@charset "UTF-8";
/*
Config
--------------------------------*/
:root {
  --theme-primary-color: #000;
  --theme-secondary-color: #ff0000;
  --theme-tertiary-color: #fff;
  --theme-primary-color-25: #000;
  --theme-secondary-color-25: #ff0000;
  --theme-tertiary-color-25: #fff;
  --theme-primary-color-50: #000;
  --theme-secondary-color-50: #ff0000;
  --theme-tertiary-color-50: #fff;
  --theme-primary-color-75: #000;
  --theme-secondary-color-75: #ff0000;
  --theme-tertiary-color-75: #fff;
}

/*
Fonts & General Styles
--------------------------------*/
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  /* Removes padding behaviour on widths */
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* CUSTOMIZE THIS */
body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  background-color: #f0f0f0;
}

a {
  color: var(--theme-secondary-color);
  text-decoration: none;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: underline;
}

a:focus {
  outline: 0;
}

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

h1, .h1 {
  font-size: 3em;
  font-family: "Montserrat", sans-serif;
  padding: 10px 0px;
  color: #000;
  font-weight: bold;
}

h2, .h2 {
  font-size: 2.5em;
  font-family: "Montserrat", sans-serif;
  padding: 10px 0px;
  color: #000;
}

h3, .h3 {
  font-size: 2em;
  font-family: "Montserrat", sans-serif;
  padding: 10px 0px;
  color: #000;
}

h4, .h4 {
  font-size: 1.5em;
  font-family: "Montserrat", sans-serif;
  padding: 10px 0px;
  color: #000;
}

h5, .h5 {
  font-size: 1.1667em;
  font-family: "Montserrat", sans-serif;
  padding: 10px 0px;
  color: #000;
}

h6, .h6 {
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  padding: 10px 0px;
  color: #000;
}

p {
  padding: 0 0 20px;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
}

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

::-webkit-input-placeholder { /* WebKit browsers */
  color: #666;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #666;
  opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #666;
  opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #666;
}

blockquote {
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C" "\201D" "\2018" "\2019";
  font-style: italic;
  font-size: 18px;
}

blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 60px;
  line-height: 0.1em;
  margin-right: 15px;
  vertical-align: -0.4em;
}

blockquote:after {
  color: #ccc;
  content: close-quote;
  font-size: 60px;
  line-height: 0.1em;
  margin-left: 10px;
  vertical-align: -34px;
}

/* /CUSTOMIZE THIS */
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.clearfix {
  clear: both;
}

img {
  vertical-align: top;
  max-width: 100%;
}

input[type=submit], input[type=button] {
  -webkit-appearance: none;
}

.fa {
  display: inline-block;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fatop {
  vertical-align: top;
}

.fa-caret-right:before {
  content: "\F0DA";
}

.fa-comments:before {
  content: "\F086";
}

.fa-twitter:before {
  content: "\F099";
}

.fa-facebook:before {
  content: "\F09A";
}

.fa-linkedin:before {
  content: "\F0E1";
}

.fa-clock-o:before {
  content: "\F017";
}

.fa-angle-double-right:before {
  content: "\F101";
}

.fa-arrow-up:before {
  content: "\F062";
  color: #2bb673;
}

.fa-arrow-down:before {
  content: "\F063";
  color: #e90000;
}

.fa-angle-right:before {
  content: "\F105";
  margin: 0 2px;
}

.fa-envelope:before {
  content: "\F0E0";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}

/*
2) Blog Styles
--------------------------------*/
/* Alignment */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

/* Content */
.hentry {
  margin: 20px 0 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #eee;
}

.entry-meta {
  clear: both;
}

.byline {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

/* Asides */
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

.white-text {
  color: #fff;
}

/* Media */
.site-header img,
.entry-content img,
.comment-content img,
.widget img {
  max-width: 100%; /* Fluid images for posts, comments, and widgets */
}

.site-header img,
.entry-content img,
img[class*=align],
img[class*=wp-image-] {
  height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

.site-header img,
.entry-content img,
img.size-full {
  max-width: 100%;
  width: auto; /* Prevent stretching of full-size images with height and width attributes in IE8 */
}

.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.wp-caption {
  border: 1px solid #ccc;
  max-width: 100%;
}

.wp-caption.aligncenter,
.wp-caption.alignleft,
.wp-caption.alignright {
  margin-bottom: 1.5em;
}

.wp-caption img {
  display: block;
  margin: 1.2% auto 0;
  max-width: 98%;
}

.wp-caption-text {
  text-align: center;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.site-content .gallery {
  margin-bottom: 1.5em;
}

.site-content .gallery a img {
  border: none;
  height: auto;
  max-width: 90%;
}

.site-content .gallery dd {
  margin: 0;
}

/* Navigation */
.site-content .site-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.site-content .nav-previous {
  float: left;
  width: 50%;
}

.site-content .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/* Widgets */
.widget {
  margin: 0 0 1.5em;
}

/*
Grids
--------------------------------*/
@font-face {
  font-family: "United Sans SmEx Bk";
  src: url(/assets/fonts/UnitedSansSemiExt-Black.bc196b88.woff2) format("woff2"), url(/assets/fonts/UnitedSansSemiExt-Black.2ff25361.woff) format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "DIN Next LT Pro";
  src: url(/assets/fonts/DINNextLTPro-Regular.d97dda8b.woff2) format("woff2"), url(/assets/fonts/DINNextLTPro-Regular.630e8d26.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "DIN Next LT Pro Bold";
  src: url(/assets/fonts/DINNextLTPro-Medium.681c501d.woff2) format("woff2"), url(/assets/fonts/DINNextLTPro-Medium.8a41381b.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "DIN Next LT Pro Heavy";
  src: url(/assets/fonts/DINNextLTPro-Medium.681c501d.woff2) format("woff2"), url(/assets/fonts/DINNextLTPro-Medium.8a41381b.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "DIN Next LT Pro Italic";
  src: url(/assets/fonts/DINNextLTPro-Italic.5016df7c.woff2) format("woff2"), url(/assets/fonts/DINNextLTPro-Italic.80d886fd.woff) format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "TT Octosquares";
  src: url("/assets/fonts/TTOctosquares-Bold.eot");
  src: local("TT Octosquares Bold"), local("TTOctosquares-Bold"), url("/assets/fonts/TTOctosquares-Bold.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/TTOctosquares-Bold.woff2") format("woff2"), url("/assets/fonts/TTOctosquares-Bold.woff") format("woff"), url("/assets/fonts/TTOctosquares-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "TT Octosquares";
  src: url("/assets/fonts/TTOctosquares-Black.eot");
  src: local("TT Octosquares Black"), local("TTOctosquares-Black"), url("/assets/fonts/TTOctosquares-Black.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/TTOctosquares-Black.woff2") format("woff2"), url("/assets/fonts/TTOctosquares-Black.woff") format("woff"), url("/assets/fonts/TTOctosquares-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "TT Octosquares";
  src: url("/assets/fonts/TTOctosquares-Medium.eot");
  src: local("TT Octosquares Medium"), local("TTOctosquares-Medium"), url("/assets/fonts/TTOctosquares-Medium.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/TTOctosquares-Medium.woff2") format("woff2"), url("/assets/fonts/TTOctosquares-Medium.woff") format("woff"), url("/assets/fonts/TTOctosquares-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TT Octosquares";
  src: url("/assets/fonts/TTOctosquares-Light.eot");
  src: local("TT Octosquares Light"), local("TTOctosquares-Light"), url("/assets/fonts/TTOctosquares-Light.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/TTOctosquares-Light.woff2") format("woff2"), url("/assets/fonts/TTOctosquares-Light.woff") format("woff"), url("/assets/fonts/TTOctosquares-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.row:before, .row:after {
  content: "";
  display: table;
  clear: both;
}

:focus {
  outline: none;
}

.center-align {
  margin-left: auto;
  margin-right: auto;
  float: none !important;
}

.pad-lr-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.pad-lt-0 {
  padding-left: 0px !important;
}

.pad-rt-0 {
  padding-right: 0px !important;
}

.container {
  max-width: 1110px;
  width: 100%;
}

/* BANNER CSS
--------------------------------------------------------------------------------------------------------------- */
.logo {
  display: inline-block;
}

.top-banner-bg {
  position: relative;
  background-color: var(--theme-primary-color);
  color: #fff;
  box-shadow: rgba(136, 136, 136, 0.13) 0px -1px 1px 0px inset;
  margin-bottom: 50px;
}

.bottom-banner-bg {
  background: url(/assets/img/bottom-banner-bg.jpg) no-repeat center top;
  background-size: cover;
  height: 718px;
  position: relative;
}

.banner-content-pad {
  padding: 20px 0px 0px;
  position: relative;
  z-index: 1;
}

.banner-content h1 {
  color: var(--theme-primary-color);
  font-weight: 700;
  font-size: 64px;
  line-height: 66px;
  margin: 25px 0px 15px;
}

.banner-content p {
  font-size: 18px;
  padding: 0px;
  font-family: "Ropa Sans", sans-serif;
  font-weight: 200;
}

.top-shadow-bg {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 350px;
  width: 100%;
  background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%) repeat scroll 0 0;
}

.bottom-shadow-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 160px;
  width: 100%;
  background: rgba(0, 0, 0, 0) linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%) repeat scroll 0 0;
}

@media only screen and (max-width: 767px) {
  .banner-content h1 {
    font-size: 48px;
    line-height: 48px;
    margin: 45px 0px 5px;
  }
}
.shopping_cart_open {
  display: none;
}
@media only screen and (max-width: 767px) {
  .shopping_cart_open {
    display: block;
  }
}

/* MAIN CONTENT CSS
--------------------------------------------------------------------------------------------------------------- */
.main-content-bg {
  padding: 0;
  position: relative;
}

.filter-box-bg {
  border: 2px solid #d2d2d2;
  display: block;
  border-radius: 2px;
  margin: 0px 0px 85px;
}

.filter-box {
  width: 68px;
  height: 68px;
  background: var(--theme-primary-color);
  display: block;
}

.filter-box-rt {
  width: 93%;
  padding: 23px 0px 20px;
}

.filter-text-pad {
  float: left;
  width: 25%;
  text-align: center;
}

.switch-bg {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 24px;
  margin: 0px 20px 0px 0px;
}

.switch-bg input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-bg {
  border-radius: 100px;
  border: 2px solid #626262;
  background: #fff;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
}

.slider-bg:before {
  position: absolute;
  left: 2px;
  content: "";
  height: 18px;
  width: 18px;
  bottom: 1px;
  background-color: #626262;
  transition: 0.4s;
}

.switch-bg input:checked + .slider-bg {
  background: #005c3d;
  border: 2px solid #005c3d;
}

.switch-bg input:focus + .slider-bg {
  box-shadow: 0 0 1px #2196F3;
}

.switch-bg input:checked + .slider-bg:before {
  background: #fff;
  left: -4px;
  transform: translateX(26px);
}

.slider-bg:before {
  border-radius: 100px;
}

.filter-text {
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.box-content-pad .row {
  margin-left: -20px;
  margin-right: -20px;
}

.box-content-pad .col-md-6 {
  padding-left: 20px;
  padding-right: 20px;
}

.box-content {
  border: 2px solid #fff;
  background: #fff;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.5);
  margin: 0px 0px 40px;
  position: relative;
  cursor: pointer;
}

.box-content.active {
  border: 6px solid var(--theme-secondary-color);
}

.box-content.active .checkbox-bg_absolute {
  background: var(--theme-primary-color);
}

.box-content.active .checkbox-bg input:checked ~ .tick-box {
  border: none;
  transform: none;
  background: url("/assets/img/sprites.png") no-repeat 0px 0px;
  width: 40px;
  height: 28px;
  display: block;
  left: 30px;
}

.requires-box .link-btn-mar {
  margin-top: -19px;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.requires-box .link-btn {
  font-size: 18px;
  padding: 7px 13px 6px;
  margin: 0px auto;
  display: block;
  width: 96%;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
}

.requires-box .company-logo img {
  vertical-align: top;
}

.requires-box .box-content-rt, .last-box .box-content-rt {
  padding-top: 47px;
}

.checkbox-bg {
  margin: 0px;
  width: 100%;
  height: 174px;
}

.checkbox-bg input {
  display: none;
}

.checkbox-bg input:checked ~ .tick-box {
  border-color: #000;
  transform: rotateZ(45deg) translate(1px, -5px);
  width: 10px;
  border-top: 0px solid #fff;
  border-left: 0px solid #fff;
}

.checkbox-bg .tick-box {
  display: inline-block;
  position: absolute;
  top: 73px;
  left: 40px;
  width: 28px;
  height: 28px;
  border: 2px solid #626262;
  border-radius: 3px;
}

.box-content-rt {
  width: 78%;
  padding: 25px 0px 0px;
}

.company-logo-width {
  float: left;
  width: 37%;
}

.company-logo { /*height: 130px; line-height: 122px;*/
  margin: 8px 0px 0px;
  display: block;
}

.company-logo img { /*vertical-align: middle;*/
  display: inline-block;
}

.company-details {
  float: left;
  width: 63%;
  padding-left: 35px;
}

.company-details h6 {
  padding: 0px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.company-details h3 {
  font-size: 30px;
  line-height: 32px;
  padding: 9px 0px 0px;
}

.company-details small {
  font-size: 18px;
  padding: 0px;
  font-family: "Montserrat", sans-serif;
}

.note-text {
  font-size: 12px;
  font-style: italic;
  color: #444;
  margin: 12px 0px 0px;
  display: block;
  font-family: "Arial", sans-serif;
}

.alert-text {
  font-size: 14px;
  line-height: 18px;
  color: var(--theme-secondary-color);
  margin: 110px 0px 0px;
  display: block;
  font-family: "Arial", sans-serif;
}

.link-btn {
  color: #fff;
  background: var(--theme-secondary-color);
  padding: 4px 13px 5px;
  display: inline-block;
  margin: 12px 0px 0px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Arial", sans-serif;
}

a.link-btn:hover {
  background: #000;
  color: #fff;
}

a.link-btn:focus {
  background: var(--theme-primary-color);
  color: #fff;
}

.more-btn {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  background: var(--theme-primary-color);
  border-radius: 5px;
  max-width: 370px;
  height: 65px;
  line-height: 65px;
  width: 100%;
  margin: 23px 0px 0px;
  display: inline-block;
  font-family: "Arial", sans-serif;
}

.more-btn:hover {
  background: #000;
  color: #fff;
}

.more-btn:focus {
  background: var(--theme-primary-color);
  color: #fff;
}

.box-content.active .tick-box {
  border: none;
  transform: none;
  background: url("/assets/img/sprites.png") no-repeat 0px 0px;
  width: 40px;
  height: 28px;
  display: block;
}

/* SHOPPING CART CSS
--------------------------------------------------------------------------------------------------------------- */
.shopping-cart-rt {
  display: none;
  background: #fff;
  width: 146px;
  position: fixed;
  top: 170px;
  z-index: 1;
  right: 0px;
  border-radius: 5px 0px 0px 5px;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.5);
}

.card-icon-bg {
  background: var(--theme-primary-color);
  padding: 28px 0px 24px;
  display: block;
  border-radius: 5px 0px 0px 0px;
}

.shopping-text {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  padding: 23px 0px 13px;
}

.shopping-text span {
  font-size: 30px;
  display: inline-block;
  vertical-align: top;
  line-height: 18px;
  margin: 0px 14px 0px 0px;
}

.reg-bg {
  background: var(--theme-secondary-color);
  color: #fff;
}

.reg-bg p {
  font-size: 16px;
  padding: 12px 0px 0px;
  color: #fff;
  font-family: "Arial", sans-serif;
  text-transform: none;
}

.reg-bg p strong {
  font-weight: bold;
}

.shopping-text.more-btn-box {
  padding-top: 13px;
}

.more-arrow {
  height: 55px;
  width: 118px;
  line-height: 55px;
  border-radius: 7px;
  margin: 0px auto;
  background: var(--theme-primary-color);
  display: block;
  color: #fff;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
}

.more-arrow:hover {
  background: var(--theme-secondary-color);
  color: #fff;
}

.more-arrow:focus {
  background: var(--theme-primary-color);
  color: #fff;
}

.shopping-popup {
  position: sticky;
  top: 0;
  z-index: 5;
  max-height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .shopping-popup {
    margin-top: 0;
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    padding-bottom: 90px;
  }
}

.shopping-popup .card {
  border: none;
  border-radius: 0px;
  box-shadow: none;
  height: 100%;
}

.shopping-popup.turnStyle_checkout-review .form_container {
  padding: 0;
}

.shopping_cart_largeClose {
  display: none;
}

.shopping-popup .card-header {
  background: var(--theme-primary-color);
  padding: 10px 22px 11px 22px;
  font-size: 20px;
  line-height: 34px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  z-index: 2;
  font-weight: 700;
}
.shopping-popup .card-header:first-child {
  border-radius: 0;
}

.shopping-popup .cart-icon {
  margin: 0px 19px 0px 0px;
  display: inline-block;
  vertical-align: top;
}

.accordion-content {
  padding-bottom: 15px;
}

.accordion-title h5 {
  font-size: 16px;
  color: #b7b7b7;
  font-weight: bold;
  border-top: 1px solid #c7c7c7;
  padding: 14px 12px 14px;
  font-family: "Arial", sans-serif;
}

.accordion-title:hover h5, .accordion-title:focus h5, .accordion-title #accordion-menu1 h5, .accordion-title .collapse-down-arrow.collapse-title h5 {
  color: #252525;
}

.accordion-title #accordion-menu1.collapse-title.collapsed h5, .accordion-title #accordion-menu1.collapse-down-arrow.collapsed h5, .accordion-title .collapse-down-arrow.collapse-title.collapsed h5 {
  color: #b7b7b7;
}

.collapse-down-arrow .fa {
  float: right;
}

#accordion-menu1.collapse-down-arrow .fa-chevron-down {
  display: inline-block;
}

#accordion-menu1.collapse-down-arrow .fa-chevron-right {
  display: none;
}

#accordion-menu1.collapse-down-arrow.collapse-title.collapsed .fa-chevron-right {
  display: inline-block;
}

#accordion-menu1.collapse-down-arrow.collapse-title.collapsed .fa-chevron-down {
  display: none;
}

#accordion-menu1.collapse-down-arrow.collapse-title .fa-chevron-down {
  display: inline-block;
}

#accordion-menu1.collapse-down-arrow.collapse-title .fa-chevron-right {
  display: none;
}

#accordion-menu1.collapse-down-arrow.collapsed .fa-chevron-down {
  display: none;
}

#accordion-menu1.collapse-down-arrow.collapsed .fa-chevron-right {
  display: inline-block;
}

.collapse-down-arrow .fa-chevron-down {
  display: none;
}

.collapse-down-arrow .fa-chevron-right {
  display: inline-block;
}

.collapse-down-arrow.collapse-title .fa-chevron-down {
  display: inline-block;
}

.collapse-down-arrow.collapse-title .fa-chevron-right {
  display: none;
}

.collapse-down-arrow.collapse-title.collapsed .fa-chevron-right {
  display: inline-block;
}

.collapse-down-arrow.collapse-title.collapsed .fa-chevron-down {
  display: none;
}

.collapsed .fa-chevron-down {
  display: none;
}

.collapsed .fa-chevron-right {
  display: inline-block;
}

.shopping-popup .card-body {
  padding: 15px;
  overflow: scroll;
}

.shopping-popup .card-body p {
  font-size: 12px;
  color: var(--theme-primary-color);
  font-family: "Ropa Sans", sans-serif;
  font-weight: 200;
}

.shopping-popup .card-footer {
  background: #fff;
  padding: 10px 0px 10px;
  border-top: 1px solid #bababa;
  border-radius: 0px 0px 0px 10px;
}

.shopping-popup .more-btn {
  background: #b9b9b9;
  margin: 0px;
}

.shopping-popup .more-btn:hover {
  background: var(--theme-primary-color);
}

.shopping-popup .company-logo {
  width: 36px;
  height: 36px;
  line-height: 32px;
  margin: 0px 16px 0px 0px;
}

.shopping-popup .company-logo img {
  max-height: 100%;
}

.shopping_cart_checkout .company-logo {
  width: 36px;
  height: 36px;
  line-height: 32px;
  margin: 0px 16px 0px 0px;
}

.shopping_cart_checkout .company-logo img {
  max-height: 100%;
}

.list-box {
  background: #f2f2f2;
  padding: 15px;
  margin: 0px 0px 5px;
  line-height: 1.25rem;
}

.shoppingCart_min_ticketQuantity-mobile-controller {
  display: none;
  padding: 10px;
}
@media only screen and (max-width: 767px) {
  .shoppingCart_min_ticketQuantity-mobile-controller {
    display: block;
  }
}

.detail-text h6 {
  font-size: 11px;
  line-height: 16px;
  padding: 0px;
  text-transform: uppercase;
  font-family: "Arial", sans-serif;
}

.date-text {
  font-size: 14px;
  line-height: 18px;
  display: block;
  font-weight: bold;
  font-family: "Arial", sans-serif;
}

.list-box-red {
  background: var(--theme-secondary-color);
  padding: 7px 30px 24px;
}

.list-box-red h6 {
  font-size: 18px;
  padding-bottom: 5px;
  color: #fff;
  text-transform: uppercase;
}

.shopping-popup .card-body .list-box-red p {
  font-size: 14px;
  color: #fff;
  font-family: "Arial", sans-serif;
}

.shopping-popup .card-body .list-box-red p strong {
  font-size: 16px;
  font-weight: bold;
}

.link-text {
  color: #fff;
  font-size: 16px;
  text-decoration: underline;
  font-family: "Arial", sans-serif;
}

.link-text:hover {
  color: #000;
  text-decoration: underline;
}

.benefitspopup .modal-content {
  border-radius: 0px;
  border: none;
  padding: 28px 20px 36px;
}

.benefitspopup .modal-dialog {
  max-width: 570px;
  width: 100%;
  margin: 0px auto;
}

.benefitspopup .modal-body {
  padding: 0px;
  max-width: 370px;
  width: 100%;
  margin: 0px auto 0px;
}

.benefitspopup h3 {
  font-size: 36px;
  line-height: 40px;
  color: var(--theme-secondary-color);
  text-transform: uppercase;
  padding: 10px 0px 5px;
}

.benefitspopup h4 {
  font-size: 18px;
  line-height: 24px;
  color: var(--theme-secondary-color);
  text-transform: uppercase;
  padding: 0px 0px 10px;
}

.benefitspopup p {
  padding: 10px 0px;
  font-family: "Arial", sans-serif;
}

.benefitspopup h5 {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  font-family: "Arial", sans-serif;
}

.benefitspopup .company-logo {
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0px;
}

.benefitspopup .company-logo img {
  max-height: 100%;
}

.benefitspopup .list-box {
  padding: 17px 30px 15px;
  margin: 0px;
}

.benefitspopup .detail-text {
  text-align: left;
  padding: 10px 0px 0px 25px;
}

.benefitspopup .detail-text h6 {
  font-size: 14px;
  margin-bottom: 6px;
}

.benefitspopup .date-text {
  font-size: 18px;
}

.benefitspopup .more-btn {
  margin: 29px 0px 24px;
}

.benefitspopup .link-text {
  color: #444;
  font-size: 14px;
}

.benefitspopup .link-text:hover {
  color: var(--theme-secondary-color);
}

.benefitspopup .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.benefitspopup.show .modal-dialog {
  transform: translate(-50%, -50%);
}

.sports-icon {
  background: url(/assets/img/sprites.png) no-repeat 0px -70px;
  width: 65px;
  height: 65px;
  display: block;
  margin: 8px auto 0px;
}

.close-icon {
  background: url(/assets/img/sprites.png) no-repeat -242px 0px;
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  right: 20px;
  z-index: 10;
}

/* FOOTER CSS
--------------------------------------------------------------------------------------------------------------- */
.footer-bg {
  background: #000;
  padding: 20px 0px 19px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .footer-bg {
    padding-bottom: 90px;
  }
}

.footer-bg .container {
  max-width: 1300px;
}

.footer-bg ul {
  list-style-type: none;
  margin: 0px;
}

.footer-bg ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 18px;
  text-transform: uppercase;
  font-family: "Arial", sans-serif;
  font-size: 11px;
  color: #fff;
}

.footer-bg ul li a {
  padding: 0px 7px;
  color: #fff;
}

.footer-bg ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bg ul li:after {
  position: absolute;
  color: #fff;
  top: 1px;
  font-size: 10px;
  content: "|";
}

.footer-bg ul li:last-child:after {
  content: none;
}

.footer-bg ul li:first-child a {
  padding-left: 0px;
}

.copyright-text {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  float: right;
  font-family: "Arial", sans-serif;
}

/* SPRITES CSS
--------------------------------------------------------------------------------------------------------------- */
.filter-icon {
  background: url(/assets/img/sprites.png) no-repeat -138px 0px;
  width: 24px;
  height: 23px;
  display: block;
  margin: 24px auto 0px;
}

.cart-icon {
  background: url(/assets/img/sprites.png) no-repeat -66px 0px;
  width: 41px;
  height: 37px;
  display: block;
  margin: 0px auto 0px;
}

.uppercase {
  text-transform: uppercase;
}

.form_container {
  border: 1px solid #c7c7c7;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
}

.small_disclaimer {
  font-size: 12px;
  color: #707070;
  line-height: 1rem;
}

body {
  width: 100%;
  overflow-x: hidden;
}

.seatCard {
  border-left: 5px solid #f2f2f2;
  display: block;
  background-color: #fff;
}
.seatCard:hover {
  background-color: #d8e6ee;
}
.seatCard h6 {
  font-family: "Montserrat", sans-serif;
  padding: 0px;
}
.seatCard .description {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  color: #6c6c6c;
  line-height: 1rem;
  padding-top: 5px;
}
.seatCard .seatCard_pricing {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  text-align: right;
  color: #293a8b;
}
.seatCard .seatCard-compare-pricing {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  text-align: right;
  color: var(--theme-secondary-color);
  text-decoration: line-through;
}

.seatCard-quantity {
  cursor: pointer;
}

.card_label {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  line-height: 1.2em;
}
.card_label.large {
  font-size: 14px;
}

.card_title {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
}
.card_title.large {
  font-size: 30px;
  line-height: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .card_title.large {
    font-size: 22px;
    line-height: 2rem;
  }
}

.card_date {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
}
.card_date.large {
  font-size: 20px;
}

.btn-primary {
  border-color: var(--theme-primary-color);
  background-color: var(--theme-primary-color);
}
.btn-primary:hover {
  border-color: var(--theme-secondary-color);
  background-color: var(--theme-secondary-color);
  color: #000;
}
.btn-primary:focus {
  background-color: var(--theme-secondary-color);
  color: #fff;
}

.small-ticket-disclaimer {
  font-size: 13px;
  text-transform: none;
  line-height: 1rem;
}

.btn-hollow {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}
.btn-hollow:hover {
  background-color: var(--theme-secondary-color);
  color: #000;
  border-color: var(--theme-secondary-color);
}
.btn-hollow:focus {
  background-color: var(--theme-secondary-color);
  color: #fff;
  border-color: var(--theme-secondary-color);
}

.btn-hollow-inverse {
  border: 1px solid #000;
  color: #000;
  background-color: transparent;
}
.btn-hollow-inverse:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.btn-hollow-inverse:focus {
  background-color: var(--theme-secondary-color);
  color: #fff;
  border-color: var(--theme-secondary-color);
}

.btn-xl {
  padding: 0.75rem 1rem;
  font-size: 1.5rem;
  line-height: 1.5;
  border-radius: 0.5rem;
}

.shoppingCart_closed_games_tier {
  font-size: 12px;
  color: var(--theme-secondary-color);
  padding: 5px 15px;
  line-height: 1.2em;
}

.shopping_cart_checkout {
  position: sticky;
  top: 10px;
}
.shopping_cart_checkout .header {
  background: var(--theme-primary-color);
  padding: 10px;
  font-size: 28px;
  line-height: 34px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}
.shopping_cart_checkout .shopping_cart_checkout_pricing {
  font-size: 18px;
  border-top: 1px solid #c7c7c7;
  padding: 25px 0px 5px;
}
.shopping_cart_checkout .shopping_cart_checkout_pricing .shopping_cart_checkout_pricing_heading {
  font-family: "Montserrat", sans-serif;
}
.shopping_cart_checkout .shopping_cart_checkout_pricing .shopping_cart_checkout_pricing_price {
  text-align: right;
}

.js_shopping_cart_seats_pricing {
  margin-top: -30px;
}
.js_shopping_cart_seats_pricing.shopping_cart_checkout_pricing {
  font-size: 16px !important;
  font-family: "Montserrat", sans-serif;
}
.js_shopping_cart_seats_pricing .shopping_cart_checkout_pricing_heading {
  border-top: 1px solid #c7c7c7;
  font-size: 16px !important;
  padding-top: 10px;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}

.form_heading {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.form_start {
  padding-top: 20px;
}

.form_spacing label {
  margin-top: 20px;
}

.body_text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.form_submit {
  padding-top: 20px;
}

.error {
  font-family: "Montserrat", sans-serif;
  color: var(--theme-secondary-color);
  font-size: 12px;
  line-height: 1em;
  line-height: 1.6em;
  padding-top: 5px;
}

input.error {
  border-color: var(--theme-secondary-color);
}

.gameCard_tickets .error {
  padding-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
}
.gameCard_tickets .error strong {
  font-family: "Montserrat", sans-serif;
  display: block;
  font-size: 12px;
}
.gameCard_tickets .gameCard_tickets_message {
  text-transform: none;
  font-size: 11px;
  line-height: 1rem;
  margin-top: 10px;
}

.regular_content {
  font-family: "Montserrat", sans-serif;
  padding-top: 15px;
}
.regular_content.smaller {
  font-size: 12px;
}

.extra_card_padding {
  padding: 10px 20px;
}

.card_padding {
  padding: 20px;
}

.cta_button {
  padding-top: 20px;
}

.card_image {
  padding-top: 10px;
}

.gameCard_tickets {
  padding: 15px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  background-color: #e4e4e4;
  font-size: 14px;
  margin-top: 10px;
}

select {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  padding: 10px;
}

.btn-full-width {
  display: block;
  width: 100%;
  text-align: center;
}

.edit_button {
  text-align: right;
  font-size: 12px;
  padding-top: 3px;
  padding-bottom: 10px;
}
.edit_button a {
  color: var(--theme-secondary-color);
}
.edit_button a:hover {
  color: var(--theme-primary-color);
}

.shopping_cart_next_indicator {
  padding: 5px;
}

.shoppingCart_min_ticketQuantity {
  background-color: #f5f5f5;
  padding: 10px;
  font-size: 13px;
  text-align: left;
  margin: 5px;
  line-height: 1.2rem;
}

.mobile_shoppingCart .shopping_cart_next_indicator {
  display: none;
}
.mobile_shoppingCart .shopping-text {
  padding: 25px 5px;
}
.mobile_shoppingCart .shoppingCart_closed_openCart {
  color: #fff;
  font-size: 34px;
  display: block;
  background-color: #4b4b4b;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
}
.mobile_shoppingCart .shoppingCart_closed_openCart:hover {
  background-color: #3c3c3c;
}

.mobile_shoppingCartIcon {
  background-color: var(--theme-primary-color);
}

.shopping_cart_largeClose {
  float: right;
  color: #fff;
}
.shopping_cart_largeClose:hover {
  color: #9c9c9c;
}

.full_width {
  width: 100%;
}

.default_messages {
  background-color: #f2f2f2;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.checkbox-bg_absolute {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 14%;
  margin-left: 15px;
}

.turnStyle_quantityLocation_games .turnStyle_quantityLocation_games_show {
  display: block;
}
.turnStyle_quantityLocation_games .turnStyle_quantityLocation_games_hide {
  display: none;
}

.turnStyle_quantityLocation_seating .turnStyle_quantityLocation_seating_show {
  display: block;
}
.turnStyle_quantityLocation_seating .turnStyle_quantityLocation_seating_hide {
  display: none;
}

.turnStyle_countdownTimer {
  background-color: #000;
  text-align: center;
}
.turnStyle_countdownTimer h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  padding-top: 0px;
  text-transform: uppercase;
  color: #fff;
}
.turnStyle_countdownTimer .turnStyle_countdownTimer-timer {
  color: var(--theme-secondary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 32px;
}

.turnStyle_errors {
  background-color: #fff;
  border: 2px solid var(--theme-secondary-color);
  color: var(--theme-secondary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
}

.turnStyle_whisper_small {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  width: auto;
  display: inline-block;
  padding: 5px;
  line-height: 1em;
  text-align: left;
  color: #636363;
  border: 1px solid #c9c9c9;
}

@media only screen and (min-width: 1650px) {
  /*HOME PAGE CSS*/
  .shopping-popup {
    top: 60px;
  }
  .benefitspopup h3 {
    padding-top: 23px;
  }
  .benefitspopup p {
    padding: 21px 0px 22px;
  }
}
.shoppingCart_min_ticketQuantity-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 25;
  padding: 0px !important;
}

.finger-pointer {
  cursor: pointer;
}
.finger-pointer:hover {
  opacity: 75%;
}

@media only screen and (max-width: 1200px) {
  /*HOME PAGE CSS*/
  /*.main-content-bg { position: inherit; }*/
  .shopping-cart-rt {
    bottom: 38px;
    left: 0;
    right: 0;
    width: 100%;
    top: auto;
    position: sticky;
    background-color: var(--theme-primary-color);
    color: #ffffff;
    border-radius: 0px;
  }
  .card-icon-bg {
    padding: 11px 0px;
    border-radius: 0px;
  }
  .shopping-popup {
    height: 100%;
  }
  .shopping-cart-rt .cart-icon {
    background: url(/assets/img/sprites.png) no-repeat -185px 0px;
    width: 30px;
    height: 27px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1150px) {
  /*HOME PAGE CSS*/
  .box-content-pad .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .box-content-pad .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1024px) {
  /*HOME PAGE CSS*/
  .filter-box-rt {
    width: 92.5%;
  }
  .box-content-pad .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .box-content-pad .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .shopping-popup {
    top: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /*HOME PAGE CSS*/
  .banner-content-pad {
    padding: 10px 0px 0px;
  }
  .banner-content-pad h1 {
    font-size: 54px;
  }
  .filter-box-rt {
    width: 90%;
  }
  .filter-text {
    font-size: 16px;
  }
  .switch-bg {
    margin: 0px 5px 0px 0px;
  }
  .checkbox-bg .tick-box {
    left: 15px;
  }
  .checkbox-bg {
    width: 19%;
  }
  .box-content-rt {
    width: 81%;
  }
  .box-content-pad .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .box-content-pad .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .company-logo-width {
    width: 25%;
  }
  .company-logo {
    margin: 8px 0px 0px 5px;
  }
  .company-details {
    width: 75%;
    padding-left: 20px;
  }
  .requires-box .link-btn {
    font-size: 16px;
  }
  .shopping-popup {
    top: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .text-right-desktop {
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
  .desktop_only {
    display: none;
  }
  .shopping_cart_checkout_pricing_heading.mobile_fix_padding {
    margin-top: 15px;
    padding-bottom: 0px;
    margin-bottom: 0;
  }
  /*HOME PAGE CSS*/
  .banner-content-pad {
    padding: 20px 0px 0px;
  }
  .logo {
    width: 150px;
    height: 150px;
  }
  .banner-content-pad h1 {
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 10px;
  }
  .filter-box-bg {
    margin: 30px 0px 50px;
  }
  .filter-box {
    width: 100%;
    height: 50px;
  }
  .filter-box-rt {
    width: 100%;
    padding: 20px 6px 0px;
  }
  .filter-text-pad {
    width: 50%;
    text-align: left;
    margin-bottom: 20px;
  }
  .switch-bg {
    margin: 0px;
    width: 40px;
  }
  .filter-text {
    font-size: 15px;
  }
  .switch-bg input:checked + .slider-bg:before {
    left: -8px;
  }
  .box-content-pad .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .box-content-pad .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .company-logo-width {
    margin: 10px 0px 0px 15px;
  }
  .last-box .checkbox-bg .tick-box {
    top: 30px;
  }
  .box-content {
    height: 300px;
    margin-bottom: 20px;
  }
  .requires-box .link-btn {
    font-size: 16px;
    padding: 7px 0px 6px;
    width: 98%;
  }
  .box-content-rt {
    width: 100%;
  }
  .company-details {
    width: 100%;
    padding: 0px 15px 20px;
    text-align: center;
  }
  .alert-text {
    margin: 66px 0px 0px;
  }
  .requires-box .box-content-rt, .last-box .box-content-rt {
    padding-top: 25px;
  }
  .requires-box .company-logo-width {
    margin-top: 20px;
  }
  .bottom-banner-bg {
    height: 400px;
  }
  .footer-bg ul {
    text-align: center;
  }
  .copyright-text {
    float: none;
    text-align: center;
    display: block;
  }
  /*SHOPPING CART POPUP*/
  .shopping-popup {
    max-width: 100%;
    background-color: #fff;
    z-index: 1000;
  }
  .shopping-popup .card-header {
    font-size: 29px;
    padding: 10px 15px 11px;
  }
  .shopping-popup .card-body {
    padding: 15px 15px 10px;
  }
  .list-box-red {
    padding: 7px 15px 15px;
  }
  .shopping-popup .link-text.float-right {
    float: left !important;
    margin-top: 5px;
  }
  .shopping-popup .more-btn {
    max-width: 280px;
  }
  /*MODEL POPUP*/
  .benefitspopup.show .modal-dialog {
    transform: none;
  }
  .benefitspopup .modal-dialog {
    transform: none;
    left: 0px;
    top: 0px;
    padding: 0px 10px;
    position: relative;
  }
  .benefitspopup .modal-content {
    margin: 30px 0px;
  }
  .benefitspopup .list-box {
    padding: 17px 10px 15px;
  }
  .benefitspopup .company-logo {
    width: 50px;
    height: 50px;
  }
  .benefitspopup .detail-text {
    width: 78%;
    padding: 5px 0px 0px 10px;
  }
  .benefitspopup .date-text {
    font-size: 16px;
  }
  /*ICONS*/
  .filter-icon {
    margin: 14px auto 0px;
  }
  .mobile_logo_card {
    margin-left: 15px;
  }
  .checkbox-bg_absolute {
    width: 16.666667%;
  }
  .mapplic-element {
    margin: 10px 0px 30px 0px;
  }
}
.modal {
  overflow: scroll;
}

.requires-box .extra_card_padding {
  padding-top: 30px;
}

/*  All Mobiles & Small Tablets Portrait */
@media screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-width: 767px) and (orientation: portrait), screen and (max-device-width: 320px) and (orientation: portrait) {
  .requires-box {
    margin-top: 10px;
  }
  .requires-box .link-btn {
    font-size: 15px;
  }
  .box-content {
    height: auto;
  }
}
/*  All Mobiles & Small Tablets Portrait */
@media screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-width: 767px) and (orientation: landscape), screen and (max-device-width: 320px) and (orientation: landscape) {
  .shopping-cart-rt {
    top: 230px;
  }
}
/* Iphone5 Landscape */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: landscape) {
  .company-logo-width {
    width: 57%;
  }
}
.mapplic-element {
  position: relative;
  overflow: hidden;
  font-size: 0;
  height: 420px;
}

.mapplic-element input,
.mapplic-element button,
.mapplic-element a,
.mapplic-element a:active {
  outline: none;
  box-shadow: none;
  text-decoration: none !important;
}

.mapplic-element a:focus {
  outline: none;
}

.mapplic-element > * {
  opacity: 1;
  transition: opacity 0.4s;
}

.mapplic-element.mapplic-loading > * {
  opacity: 0;
}

/* Preloader & Error */
.mapplic-element.mapplic-loading {
  background: url(/assets/img/clients/mapplic/loader.gif) no-repeat center;
}

.mapplic-element.mapplic-error {
  background: url(/assets/img/clients/mapplic/error-icon.png) no-repeat center;
}

/* Map container */
.mapplic-container {
  display: inline-block;
  position: relative;
  width: 70%;
  height: 100%;
}

.mapplic-map {
  transform-origin: 0 0;
}

/* Map layer */
.mapplic-layer img {
  width: 100%;
}

/* IE Fix */
.mapplic-layer {
  width: 100%;
  height: 100%;
  position: absolute;
}

/* IE Fix END */
.mapplic-map.mapplic-zoomable .mapplic-map-image {
  cursor: url(/assets/img/clients/mapplic/openhand.cur), default;
}

.mapplic-map.mapplic-zoomable.mapplic-dragging .mapplic-map-image {
  cursor: url(/assets/img/clients/mapplic/closedhand.cur), move;
}

/* Pin types */
.mapplic-pin {
  background-image: url(/assets/img/clients/mapplic/pin.png);
  background-size: 18px 24px;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
  width: 18px;
  height: 24px;
  margin-top: -23px;
  margin-left: -9px;
  position: absolute;
  transform-origin: 50% 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mapplic-pin.hide {
  display: none;
}

/* Marker types */
.mapplic-pin.mapplic-active {
  display: block !important;
}

.mapplic-pin.pin-classic {
  background-color: #f23543;
  background-image: none;
  border-color: #f23543;
  border-radius: 10px;
  line-height: 22px !important;
  width: 20px;
  height: 20px;
  margin-top: -20px;
  margin-left: -10px;
  transform-origin: 50% 100%;
}

.mapplic-pin.pin-classic:before {
  border-style: solid;
  border-width: 9px 8px 0 8px;
  border-color: inherit;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 2px;
}

.mapplic-pin:before {
  box-sizing: content-box !important;
}

.mapplic-pin.pin-marker {
  background-color: #fdca2a;
  background-image: none;
  border-color: #fdca2a;
  border-radius: 8px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  transform-origin: 50% 50%;
}

.mapplic-pin.pin-marker:before {
  border-color: inherit;
  border-style: solid;
  border-width: 6px;
  border-radius: 16px;
  content: "";
  display: block;
  opacity: 0.4;
  width: 16px;
  height: 16px;
  position: absolute;
  left: -6px;
  top: -6px;
}

.mapplic-pin.pin-disk {
  background-color: white !important;
  background-image: none;
  border-color: #f19819;
  border-radius: 8px;
  color: #333 !important;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  transform-origin: 50% 50%;
}

.mapplic-pin.pin-disk:before {
  border-color: inherit;
  border-style: solid;
  border-width: 3px;
  border-radius: 16px;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: -3px;
  top: -3px;
}

.mapplic-pin.pin-ribbon {
  background-color: #46b450;
  background-image: none;
  border-color: #46b450;
  border-radius: 2px 2px 2px 0;
  height: 16px;
  min-width: 10px;
  width: auto;
  padding: 0 3px;
  margin-left: -8px;
  margin-top: -20px;
  transform-origin: 8px 20px;
}

.mapplic-pin.pin-ribbon:after {
  border-style: solid;
  border-width: 0 8px 4px 0;
  border-color: transparent rgba(0, 0, 0, 0.5) transparent transparent;
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 0px;
}

.mapplic-pin.pin-ribbon:before {
  border-style: solid;
  border-width: 0 8px 4px 0;
  border-color: inherit;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 0px;
}

.mapplic-pin.pin-dot {
  background-color: transparent !important;
  background-image: none;
  border-color: #29afa1;
  color: #333 !important;
  height: 16px;
  min-width: 10px;
  width: auto;
  padding: 0 3px;
  margin-left: 4px;
  margin-top: -8px;
  transform-origin: -4px 8px;
}

.mapplic-pin.pin-dot:before {
  border-color: inherit;
  border-style: solid;
  border-width: 3px;
  border-radius: 12px;
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  position: absolute;
  top: 5px;
  left: -7px;
}

/* Image pin */
.mapplic-pin.pin-image {
  background-size: 32px;
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border: 2px solid #fff;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  transform-origin: 50%;
}

.mapplic-pin.orange {
  background-image: url(/assets/img/clients/mapplic/pin-orange.png);
}

.mapplic-pin.yellow {
  background-image: url(/assets/img/clients/mapplic/pin-yellow.png);
}

.mapplic-pin.green {
  background-image: url(/assets/img/clients/mapplic/pin-green.png);
}

.mapplic-pin.blue {
  background-image: url(/assets/img/clients/mapplic/pin-blue.png);
}

.mapplic-pin.purple {
  background-image: url(/assets/img/clients/mapplic/pin-purple.png);
}

.mapplic-pin.circular {
  background-image: none;
  background-color: #fb7575;
  border-radius: 6px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) inset;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  transform-origin: 50% 50%;
}

.mapplic-pin.circle {
  background: none !important;
  border: 2px solid #fb7575;
  width: 8px;
  height: 8px;
  margin-left: -6px;
  margin-top: -6px;
  transform-origin: 50% 50%;
}

.mapplic-pin.transparent {
  background-image: none;
  background-color: #795ecd;
  border-radius: 10px;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0.5 !important;
  transform-origin: 50% 50%;
}

.mapplic-pin.pin-label {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  line-height: 16px;
}

.mapplic-pin.pin-label:visited {
  color: #fff;
}

.mapplic-pin.pin-md {
  border-radius: 50%;
  margin-left: -10px;
  margin-top: -10px;
  line-height: 20px;
  width: 20px;
  height: 20px;
}

.mapplic-pin.pin-lg {
  border-radius: 50%;
  margin-left: -15px;
  margin-top: -15px;
  line-height: 30px;
  width: 30px;
  height: 30px;
}

.mapplic-pin.pin-xl {
  border-radius: 50%;
  margin-left: -20px;
  margin-top: -20px;
  line-height: 40px;
  width: 40px;
  height: 40px;
}

.mapplic-pin.pin-pulse:before {
  content: "";
  border: 2px solid #888;
  border-radius: 30px;
  height: inherit;
  width: inherit;
  top: -2px;
  left: -2px;
  position: absolute;
  animation: pulsate 1.8s ease-out;
  animation-iteration-count: infinite;
  animation-delay: 1s;
  opacity: 0;
  box-sizing: content-box;
}
/* Minimap */
.mapplic-minimap {
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  margin: 12px;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  overflow: hidden;
  transition: opacity 0.4s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mapplic-minimap-layer {
  line-height: 0;
}

.mapplic-minimap img {
  width: 100%;
}

.mapplic-minimap-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.mapplic-minimap .mapplic-minimap-active {
  position: absolute;
  opacity: 1;
  top: 0;
  left: 0;
}

.mapplic-minimap-background {
  width: 140px !important;
  -webkit-filter: blur(2px);
}

/* UI Buttons */
.mapplic-btn {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  width: 28px;
  height: 28px;
  transition: background-color 0.2s;
}

.mapplic-container > .mapplic-btn {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  position: absolute;
  margin: 12px;
}

.mapplic-btn:active {
  background-color: #f8f8f8;
}

/* Clear Button */
.mapplic-clear-btn {
  background-image: url(/assets/img/clients/mapplic/reset.svg);
  background-size: 16px 16px;
  display: none;
  bottom: 69px;
  right: 0;
}

/* Zoom Buttons */
.mapplic-zoom-btns {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  margin: 12px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.mapplic-zoom-btns a {
  display: block;
}

.mapplic-zoom-btns a.mapplic-disabled {
  background-color: #eee;
  cursor: default;
}

a.mapplic-zoomin-btn {
  background-image: url(/assets/img/clients/mapplic/plus.svg);
  background-size: 10px 10px;
  border-bottom: 1px solid #eee;
}

a.mapplic-zoomout-btn {
  background-image: url(/assets/img/clients/mapplic/minus.svg);
  background-size: 10px 10px;
}

.seatingChart_selectable {
  cursor: pointer;
}
.seatingChart_selectable:hover {
  stroke: #3375b7;
  stroke-width: 6px;
  stroke-linejoin: round;
}

.seatingChart_selectable_no_hover {
  cursor: pointer;
}

.seating_chart {
  margin-bottom: 30px;
}

/* Fullscreen */
.mapplic-fullscreen {
  background-color: rgba(248, 248, 248, 0.95);
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  margin: 0 !important;
  max-width: 100% !important;
  max-height: 100% !important;
  z-index: 99980;
}

.mapplic-fullscreen-btn {
  background-image: url(/assets/img/clients/mapplic/fullscreen.svg);
  background-size: 14px 14px;
  top: 0;
  left: 0;
}

.mapplic-fullscreen .mapplic-fullscreen-btn {
  background-image: url(/assets/img/clients/mapplic/fullscreen-exit.svg);
}

.mapplic-fullscreen .mapplic-container {
  width: 80%;
}

.mapplic-fullscreen .mapplic-sidebar {
  width: 20%;
}

/* Levels */
.mapplic-levels {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  position: absolute;
  top: 0;
  right: 0;
  margin: 12px;
  overflow: hidden;
}

.mapplic-levels > * {
  display: block;
  box-sizing: border-box;
}

.mapplic-levels-select {
  background-color: #fff;
  border: none;
  border-radius: 0;
  color: #2f3435;
  margin: 0;
  padding: 10px 8px;
  margin-right: 20px;
  font-size: 13px;
  font-weight: 600;
  outline: none;
  -webkit-appearance: none;
}

.mapplic-levels a {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 4px;
  cursor: pointer;
  height: 50%;
  width: 20px;
  position: absolute;
  right: 0;
}

.mapplic-levels a:active {
  background-color: #f8f8f8;
}

.mapplic-levels .mapplic-levels-up {
  background-image: url(/assets/img/clients/mapplic/arrow-up.svg);
}

.mapplic-levels .mapplic-levels-down {
  background-image: url(/assets/img/clients/mapplic/arrow-down.svg);
  bottom: 0;
}

.mapplic-levels a.mapplic-disabled {
  background-color: #eee;
  cursor: default;
}

/* Sidebar */
.mapplic-sidebar {
  width: 30%;
  height: 100%;
  padding: 92px 0 12px 12px;
  position: relative;
  box-sizing: border-box;
  pointer-events: none;
}

.mapplic-sidebar > * {
  pointer-events: auto;
}

.mapplic-container {
  float: right;
}

/* Right sidebar */
.mapplic-sidebar-right .mapplic-container {
  float: left;
}

.mapplic-sidebar-right .mapplic-sidebar {
  float: right;
  padding: 92px 12px 12px 0;
}

/* Search */
.mapplic-filter {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  margin: 0;
  overflow: hidden;
  margin-top: -80px;
  padding: 16px 20px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.mapplic-search-input {
  background-image: url(/assets/img/clients/mapplic/magnifier.svg) !important;
  background-size: 14px 14px !important;
  background-repeat: no-repeat !important;
  background-position: 0 0 !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  box-sizing: border-box;
  border-radius: 0;
  font-size: 20px !important;
  font-family: inherit;
  line-height: 20px;
  width: 100%;
  height: 48px !important;
  margin: 0 !important;
  padding: 24px 24px 4px 0 !important;
}

.mapplic-search-input:focus {
  outline: none !important;
}

.mapplic-search-input::-moz-placeholder {
  color: #ccc;
  font-weight: 400;
}

.mapplic-search-input::placeholder {
  color: #ccc;
  font-weight: 400;
}

.mapplic-search-input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.mapplic-search-clear {
  background-image: url(/assets/img/clients/mapplic/cross.svg);
  background-size: 8px 8px;
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: center;
  box-shadow: none;
  border: none;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 32px;
  right: 8px;
  margin: 2px 0;
  width: 34px;
  height: 34px;
}

/* Search Disabled */
.mapplic-sidebar-nosearch {
  padding-top: 56px;
}

.mapplic-sidebar-nosearch .mapplic-filter {
  margin-top: -44px;
  height: 44px;
}

/* Tags */
.mapplic-filter-tags {
  text-align: right;
  position: absolute;
  top: 14px;
  right: 16px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}

.mapplic-tag {
  background-color: #2f3434;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  margin-left: 4px;
  padding: 1px 6px 2px 8px;
  display: inline-block;
}

.mapplic-tag > span {
  background-image: url(/assets/img/clients/mapplic/cross-light.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  display: inline-block;
  margin-left: 6px;
  margin-bottom: 1px;
  width: 6px;
  height: 6px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.mapplic-tag:hover > span {
  transform: scale(1.2);
  opacity: 1;
}

/* Sidebar list */
.mapplic-list-container {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  height: auto;
  max-height: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.mapplic-list-container:before {
  display: block;
  /* content: ''; */
  background-color: #fff;
  width: 100%;
  height: 10px;
  position: absolute;
  z-index: 100;
}

.mapplic-list {
  list-style: none;
  padding: 0;
  padding-bottom: 10px;
  margin: 0;
  height: 100%;
}

.mapplic-list-container ol {
  border-color: #eee;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mapplic-list-expandable {
  background-color: #fff;
  padding: 10px 0;
}

.mapplic-list-container li {
  margin: 0 !important;
}

.mapplic-list-category > a {
  background-color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  color: #2f3434 !important;
  display: block;
  margin: 6px 10px;
  margin-bottom: 0;
  padding: 10px;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.2s;
}

.mapplic-list-category > a:hover {
  background-color: #f8f8f8;
}

.mapplic-list-category h4 {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  margin: 0;
}

.mapplic-list-category h4.mapplic-margin {
  margin-top: 9px;
}

.mapplic-about {
  color: #aaa;
  display: block;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
}

/* Thumbnail */
.mapplic-list-category .mapplic-thumbnail {
  background-color: #aaa;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.mapplic-list-category .mapplic-thumbnail-placeholder {
  font-size: 18px;
  font-weight: bold;
  line-height: 25px;
}

.mapplic-thumbnail {
  border-radius: 0px;
  box-shadow: none !important;
  margin-right: 10px;
  float: left;
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}

.mapplic-thumbnail-placeholder {
  background-color: #eee;
  box-sizing: border-box;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  padding: 8px 4px;
  width: 50px;
  height: 50px;
  text-align: center;
}

.mapplic-list-category > a .mapplic-list-count {
  color: #aaa;
  font-size: 12px;
  font-weight: normal;
  margin-left: 4px;
}

/* List location */
.mapplic-list-location {
  border-color: #aaa;
  margin: 0 !important;
  padding: 0 !important;
}

.mapplic-list-location[data-location=init] {
  display: none !important;
}

.mapplic-list-location > a {
  background-color: #fff;
  border-left: 2px solid transparent;
  display: block;
  font-size: 14px;
  padding: 10px 20px 10px 18px;
  text-decoration: none;
  transition: border, background-color 0.1s;
}

.mapplic-list-location > a:after {
  content: "";
  display: block;
  clear: both;
}

.mapplic-list-location.is-active > a {
  color: "#ffffff";
  border-color: inherit;
  position: relative;
}
.mapplic-list-location.is-active > a:before {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  top: 0;
  left: -20px;
  width: "100%";
  height: 100%;
  max-height: 100%;
  color: "#ffffff";
  padding-right: 44px;
  text-align: right;
  z-index: 0;
}
.mapplic-list-location.is-active > a:after {
  content: "Remove";
  color: "#ffffff";
  width: 105px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 5px;
  padding-right: 5px;
}
.mapplic-list-location.is-active h4 {
  color: "#ffffff";
  position: relative;
  z-index: 1;
}

/* Tooltip */
.mapplic-tooltip {
  display: none;
  position: absolute;
  transition: margin 0.1s;
  transform-origin: 0 0;
  padding-bottom: 30px;
  pointer-events: none;
}

.mapplic-tooltip:after {
  content: "";
  border-color: #fff transparent transparent transparent !important;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  width: 0;
  height: 0;
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-bottom: -7px;
  margin-left: -7px;
}

.mapplic-tooltip-wrap {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  max-width: 300px;
  min-width: 120px;
  padding: 16px;
  pointer-events: auto;
}

.mapplic-tooltip-wrap::after {
  content: "";
  clear: both;
  display: table;
}

.mapplic-tooltip img {
  max-width: 100%;
}

.mapplic-tooltip .mapplic-image {
  margin: -16px;
  max-width: none;
}

.mapplic-tooltip-title {
  color: #333;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  margin: 0 12px 0 0 !important;
}

.has-image .mapplic-tooltip-title {
  color: #fff;
  margin: -20px 12px 20px 0 !important;
}

.mapplic-hovertip,
.mapplic-hovertip > .mapplic-tooltip-wrap {
  pointer-events: none;
}

.mapplic-hovertip > .mapplic-tooltip-wrap {
  min-width: 20px;
  padding: 6px 14px;
}

.mapplic-hovertip .mapplic-tooltip-title {
  margin: 0 !important;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.mapplic-tooltip-content {
  margin-top: 10px;
  margin-bottom: 6px;
  max-height: 160px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mapplic-tooltip .mapplic-thumbnail {
  border-radius: 50% !important;
  width: 48px;
  height: 48px;
  margin-right: 12px;
}

.mapplic-tooltip-description,
.mapplic-tooltip p {
  color: #888;
  font-size: 13px;
  line-height: 20px;
  margin: 0;
}

.mapplic-tooltip p {
  margin-top: 0;
  margin-bottom: 6px;
}

.mapplic-tooltip-description p:last-child {
  margin: 0;
}

.mapplic-popup-link {
  background-color: #888;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1) !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  float: right;
  margin-top: 4px;
  padding: 4px 8px;
  text-decoration: none;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.mapplic-popup-link:hover {
  background-color: #666;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}

.mapplic-tooltip-close {
  background-image: url(/assets/img/clients/mapplic/cross.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 6px;
  top: 6px;
  padding: 6px;
  width: 8px;
  height: 8px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.mapplic-tooltip-close:hover {
  opacity: 1;
}

/* Lightbox */
.mapplic-lightbox-title {
  color: #333;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
}

.mapplic-lightbox {
  background-color: #fff;
  position: relative;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}

.mapplic-lightbox:after {
  content: "";
  display: block;
  clear: both;
}

.mapplic-popup-image {
  outline: none;
}

.mfp-bg {
  z-index: 99981 !important;
}

.mfp-wrap {
  z-index: 99982 !important;
}

.mfp-content {
  z-index: 99983 !important;
}

/* Lightbox animation */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* Toggle */
.mapplic-toggle {
  display: block;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  min-width: 20px;
  min-height: 20px;
}

.mapplic-toggle > .mapplic-toggle-circle {
  background-color: #aaa;
  border-radius: 50%;
  position: absolute;
  left: 1px;
  top: 1px;
  width: 18px;
  height: 18px;
  transform-origin: center;
  transform: scale(0);
  transition: 0.2s;
}

.mapplic-toggle:before {
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 50%;
  box-sizing: content-box;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
}

.mapplic-toggle > input {
  display: none;
}

.mapplic-toggle > input:checked + span {
  transform: scale(0.7);
}

.mapplic-list-category {
  position: relative;
}

.mapplic-list-category .mapplic-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -10px;
  box-sizing: border-box;
}

/* Legend */
.mapplic-legend {
  background-color: rgba(255, 255, 255, 0.9);
  margin: 12px;
  padding: 0 8px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.mapplic-legend-label {
  display: block;
  font-size: 14px;
  font-weight: normal;
  margin: 6px 0;
  padding-left: 28px;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

.mapplic-legend-key {
  background-color: #aaa;
  border: 2px solid #fff;
  border-radius: 50%;
  box-sizing: content-box;
  display: inline-block;
  height: 16px;
  width: 16px;
  position: absolute;
  left: 8px;
}

/* Reveal */
.mapplic-revealed {
  display: block !important;
}

/* Portrait mode */
.mapplic-portrait .mapplic-container,
.mapplic-portrait .mapplic-sidebar {
  width: 100% !important;
}

.mapplic-portrait .mapplic-sidebar {
  padding: 92px 12px 12px 12px !important;
}

.mapplic-portrait .mapplic-tooltip {
  max-width: 240px;
}

.mapplic-portrait .mapplic-minimap-background {
  width: 100px !important;
}

.mapplic-portrait.mapplic-element {
  height: auto !important;
}

.mapplic-portrait .mapplic-list-container {
  max-height: 600px;
}

/* Retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .mapplic-pin {
    background-image: url(/assets/img/clients/mapplic/pin@2x.png);
  }
  .mapplic-pin.orange {
    background-image: url(/assets/img/clients/mapplic/pin-orange@2x.png);
  }
  .mapplic-pin.yellow {
    background-image: url(/assets/img/clients/mapplic/pin-yellow@2x.png);
  }
  .mapplic-pin.green {
    background-image: url(/assets/img/clients/mapplic/pin-green@2x.png);
  }
  .mapplic-pin.blue {
    background-image: url(/assets/img/clients/mapplic/pin-blue@2x.png);
  }
  .mapplic-pin.purple {
    background-image: url(/assets/img/clients/mapplic/pin-purple@2x.png);
  }
}
/* Map */
.mapplic-element svg {
  width: 100%;
  height: 100%;
}

.mapplic-element svg a {
  cursor: pointer;
}

.mapplic-clickable:not(g),
g.mapplic-clickable > * {
  cursor: pointer;
  transition: opacity 0.2s;
}

.mapplic-map-image *[id^=nopointer] {
  pointer-events: none;
}

[id^=landmarks] .mapplic-clickable {
  cursor: pointer;
}

/* Developer tools */
.mapplic-coordinates {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  position: absolute;
  margin: 10px;
  margin-left: -80px;
  padding: 4px 6px;
  font-size: 14px;
  top: 0;
  left: 50%;
  pointer-events: none;
}

/* SKINS */
/* mapplic-booking */
.mapplic-booking .mapplic-active,
.mapplic-booking .mapplic-active > * {
  fill: #A8D865;
}

.mapplic-booking .unavailable,
.mapplic-booking .unavailable > * {
  fill: #F7B332;
  opacity: 1;
  cursor: default;
}

/* mapplic-dark */
.mapplic-dark .mapplic-tooltip-wrap {
  background-color: #333;
}

.mapplic-dark .mapplic-tooltip:after {
  border-color: #333 transparent transparent transparent !important;
}

.mapplic-dark .mapplic-tooltip-title {
  color: #fff;
}

.mapplic-dark .mapplic-tooltip-description,
.mapplic-dark .mapplic-tooltip p {
  color: #bbb;
}

.mapplic-dark .mapplic-tooltip-close {
  background-color: rgba(51, 51, 51, 0.5);
  background-image: url(/assets/img/clients/mapplic/cross-light.svg) !important;
}

/* INTERACTIVE ELEMENTS */
/* clickable elements */
.mapplic-clickable:not(g),
g.mapplic-clickable > * {
  opacity: 0.9;
  /*fill: #b7a6bd*/
}

/* hovered elements */
.mapplic-clickable:not(g):hover,
g.mapplic-clickable:hover > * {
  opacity: 0.8;
}

/* active elements */
.mapplic-active,
a.mapplic-active > path,
g.mapplic-active > * {
  opacity: 1 !important;
}

/* Transparent */
.mapplic-transparent .mapplic-clickable:not(g),
.mapplic-transparent g.mapplic-clickable > * {
  opacity: 0.6;
}

.mapplic-transparent .mapplic-clickable:not(g):hover,
.mapplic-transparent g.mapplic-clickable:hover > * {
  opacity: 0.8;
}

.mapplic-transparent .mapplic-active,
.mapplic-transparent a.mapplic-active > path,
.mapplic-transparent g.mapplic-active > * {
  opacity: 1 !important;
}

/* Mall example - Custom */
#landmarks-ground .mapplic-clickable,
#landmarks-underground .mapplic-clickable,
#landmarks-level1 .mapplic-clickable {
  opacity: 1 !important;
}

#landmarks-ground polygon.mapplic-active,
#landmarks-ground path.mapplic-active {
  fill: #ADDB2C;
}

#landmarks-underground polygon.mapplic-active,
#landmarks-underground path.mapplic-active {
  fill: #7EE0CD;
}

#landmarks-level1 polygon.mapplic-active,
#landmarks-level1 path.mapplic-active {
  fill: #F9684B;
}

/* CUSTOM STYLES */
.mapplic-image,
.mapplic-tooltip {
  max-width: 300px !important;
} /* tooltip width */
.mapplic-tooltip-content {
  max-height: 160px;
} /* tooltip height*/
/* example custom pin */
.mapplic-pin.my-new-pin { /* replace 'my-new-pin' with the name of your pin */
  background-image: url(/assets/img/clients/mapplic/my-new-pin.png); /* define the path to image file */
  background-size: 20px 30px;
  width: 20px;
  height: 30px;
  margin-left: -10px; /* negative margins are used for */
  margin-top: -15px; /* defining the pin's origin */
}

.mapplic-clickable:not(g),
g.mapplic-clickable > * {
  opacity: 1;
  fill: #E4E4E4;
}

.mapplic-clickable:not(g):hover,
g.mapplic-clickable:hover > * {
  opacity: 1;
  fill: #CCCCCC;
}

.mapplic-active,
a.mapplic-active > path,
g.mapplic-active > * {
  opacity: 1;
  fill: #F9F9F9 !important;
}

.mapplic-element {
  background-color: "#ffffff";
}

.mapplic-container {
  width: 70%;
  overflow: hidden;
}

.mapplic-sidebar-right .mapplic-sidebar {
  width: 30%;
  background-color: "#ffffff";
  padding: 0;
  overflow: hidden;
}

.mapplic-portrait .mapplic-sidebar {
  padding: 0 !important;
}

.mapplic-header {
  text-transform: uppercase;
  height: 60px;
  padding: 30px 20px 0;
  margin: 0;
}

.mapplic-filter {
  display: none;
  box-shadow: none;
}

.mapplic-list-container {
  box-shadow: none;
  height: "100%";
}

.mapplic-list-expandable {
  padding: 0;
}

.mapplic-list-location {
  background: inherit;
  color: inherit;
}
.mapplic-list-location > a {
  padding: 18px 20px;
  border: none;
  display: flex;
  align-items: center;
  background: inherit;
  color: inherit;
}
.mapplic-list-location > a:hover, .mapplic-list-location > a:focus {
  background-color: inherit;
}
.mapplic-list-location > a h4 {
  margin: 0 !important;
  text-transform: uppercase;
  flex-grow: 1;
}
.mapplic-list-location > a button {
  width: 105px;
}

.mapplic-revealed {
  display: block !important;
}

.mapplic-pin.circular {
  background-image: none;
  border-radius: 6px;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  transform-origin: 50% 50%;
}

.mapplic-pin.pin-label {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  line-height: 16px;
}

.mapplic-pin.pin-md {
  border-radius: 50%;
  margin-left: -4px;
  margin-top: -4px;
  line-height: 20px;
  width: 8px;
  height: 8px;
}
.mapplic-hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 300ms, opacity 300ms;
}

.flyout {
  visibility: hidden;
  transition: visibility 0s 0s;
}
.flyout.flyout--is-visible {
  visibility: visible;
  transition: visibility 0s 0s;
}

.flyout__container {
  position: absolute;
  overflow-y: scroll;
  height: 100%;
  top: 0;
  bottom: 0;
  transition: transform 0.6s 0.6s;
  z-index: 1;
  background-color: #ffffff;
}

.flyout--from-right .flyout__container {
  right: 0;
  transform: translate3d(100%, 0, 0);
}

.flyout--is-visible .flyout__container {
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.flyout__content {
  margin: 0;
  padding: 20px;
}
.flyout__content h4 {
  margin: 20px 0 0px;
}
.flyout__content p {
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.flyout__row {
  display: flex;
  align-items: center;
}
.flyout__row--section {
  flex-basis: 70%;
}
.flyout__row--seat {
  flex-basis: 30%;
}

.flyout__blocktext--sml {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
}
.flyout__blocktext--sml .flyout__blocktext--sub {
  text-transform: uppercase;
}

.flyout__blocktext--med {
  font-size: 14px;
  text-transform: uppercase;
}

.flyout__blocktext--lrg {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 1em;
}

.flyout__blocktext--tiny {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 1.5em;
}

.flyout__row--titles {
  padding-bottom: 10px;
  margin-top: 20px;
}

.turnStyle_seat_pricing {
  display: none;
}

.flyout__image {
  width: 387px;
  height: 254px;
}

.flyout__section-number {
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 1.8rem;
}

.flyout__games {
  margin-bottom: 20px;
}

.js-flyout__close {
  margin-top: 0 !important;
}

.mapplic-sidebar {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mapplic-header {
  flex: 0 0 auto;
}

.mapplic-list-container {
  flex: 1 1 auto;
  height: auto !important;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
}
.mapplic-list-container.is-active {
  display: block;
}

.twolves__landing .twolves__landing__heading-container {
  background: rgb(12, 35, 63);
  background-image: url(/assets/img/clients/twolves/landing_banner_footer.png);
  background-image: url(/assets/img/clients/twolves/landing_banner_footer.png), linear-gradient(0deg, rgb(12, 35, 63) 0%, rgb(38, 96, 146) 100%);
  background-position: bottom left;
  background-repeat: repeat-x;
  padding-bottom: 200px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner {
  position: relative;
  z-index: 11;
  padding: 90px 50px 20px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner h1 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 60px;
  padding-top: 10px;
  text-transform: uppercase;
  margin-top: -25px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner h1 div {
  margin-top: -20px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner h1 span {
  color: var(--theme-secondary-color);
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #fff;
  font-size: 85px;
}
@media only screen and (max-width: 767px) {
  .twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner h1 {
    padding-top: 15px;
  }
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-content-label {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.5rem;
  font-size: 24px;
  text-transform: uppercase;
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-content-label {
    padding-top: 20px;
    letter-spacing: 1rem;
    font-size: 16px;
  }
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-content {
  z-index: 2;
  position: relative;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-subtitle {
  color: #fff;
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  line-height: 2.5rem;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-subtitle span {
  background-color: #fff;
  color: var(--theme-primary-color);
  padding: 0 10px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-content-container {
  max-width: 400px;
  margin-top: -15px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-logos {
  margin-top: 20px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-content-container-small {
  max-width: 350px;
  color: #fff;
  padding: 30px 0px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-hook-large {
  color: var(--theme-secondary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 72px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-hook-med {
  color: var(--theme-secondary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-hook-small {
  font-size: 14px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-hook {
  margin: 40px 0px 20px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-hook-description {
  font-size: 13px;
  line-height: 1.5em;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-cta {
  margin-top: 0px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .btn-landing {
  background-color: var(--theme-secondary-color);
  color: var(--theme-tertiary-color);
  border-radius: 0px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .btn-landing:hover {
  background-color: #fff;
  color: #000;
}
.twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .btn-landing:focus {
  background-color: var(--theme-secondary-color);
  color: var(--theme-tertiary-color);
}
@media only screen and (max-width: 767px) {
  .twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner h1 {
    font-size: 48px;
  }
  .twolves__landing .twolves__landing__heading-container .twolves__landing__heading-banner .twolves__landing__heading-subtitle {
    font-size: 24px;
  }
}
.twolves__landing .twolves__landing__filter {
  background-color: #101010;
  color: #fff;
}
.twolves__landing .twolves__landing__filter-container {
  max-width: 610px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .twolves__landing .twolves__landing__filter-container {
    padding: 50px;
  }
}
.twolves__landing .twolves__landing__filter-container h2 {
  color: #fff;
}
.twolves__landing .twolves__landing__filter-container .filter-button {
  color: var(--theme-primary-color);
}
.twolves__landing .twolves__landing__contact {
  background-color: var(--theme-primary-color);
}
@media only screen and (max-width: 767px) {
  .twolves__landing .twolves__landing__contact .twolves__landing__contact-logo {
    padding: 50px 0px;
  }
}
.twolves__landing .twolves__landing__contact .twolves__landing__contact-form-side {
  background-color: #fff;
  padding: 100px;
}
@media only screen and (max-width: 767px) {
  .twolves__landing .twolves__landing__contact .twolves__landing__contact-form-side {
    padding: 40px;
  }
}
.twolves__landing .twolves__landing__contact h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
}
.twolves__landing .twolves__landing__contact .contact-form-container {
  margin-top: 30px;
}
.twolves__landing .twolves__landing__contact .contact-form-container button {
  padding: 1.3rem 2.5rem;
}
.twolves__landing .twolves__landing__seatmap {
  padding: 120px 0px 120px;
}
@media only screen and (max-width: 767px) {
  .twolves__landing .twolves__landing__seatmap {
    padding: 50px 20px;
  }
}
.twolves__landing .twolves__landing__seatmap .twolves__landing__seatmap-container {
  max-width: 90%;
  margin: 0 auto;
}
.twolves__landing .twolves__landing__seatmap .twolves__landing__seatmap-container-tab-content {
  padding: 2rem 20px 0 20px;
  color: #666;
  font-size: 14px;
}
.twolves__landing .twolves__landing__seatmap .twolves__landing__seatmap-pricing-row {
  padding: 0rem;
  color: #666;
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.twolves__landing .twolves__landing__seatmap .twolves__landing__seatmap-pricing-row a {
  padding: 1rem 0;
  display: block;
  color: #666;
}
.twolves__landing .twolves__landing__footer {
  background: var(--theme-primary-color);
}
.twolves__landing .twolves__landing__footer .twolves__landing__footer-container {
  max-width: 800px;
  margin: 0 auto;
}
.twolves__landing .twolves__landing__footer .twolves__landing__footer-container .footer-top {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--theme-primary-color);
}
.twolves__landing input, .twolves__landing textarea {
  width: 100%;
  padding: 1.3rem 2.5rem;
  margin: 0 0 1.5rem;
}

/*price sections bg*/
.bkg-red {
  background-color: #da2828;
  border-color: #da2828;
}

.bkg-pink {
  background-color: #f08db9;
  border-color: #f08db9;
}

.bkg-magenta {
  background-color: #ee267c;
  border-color: #ee267c;
}

.bkg-orange {
  background-color: #f7941d;
  border-color: #f7941d;
}

.bkg-purple {
  background-color: #653291;
  border-color: #653291;
}

.bkg-ti {
  background-color: #00adef;
  border-color: #00adef;
}

.bkg-green-ll {
  background-color: #00a850;
  border-color: #00a850;
}

.bkg-green-loge {
  background-color: #67c7ba;
  border-color: #67c7ba;
}

.bkg-grey-ll {
  background-color: #bdbec0;
  border-color: #bdbec0;
}

.bkg-yellow {
  background-color: #ffe701;
  border-color: #ffe701;
}

.bkg-yellow-ul {
  background-color: #ffca6e;
  border-color: #ffca6e;
}

.bkg-blue-ul {
  background-color: #9dd7f5;
  border-color: #9dd7f5;
}

.bkg-striped {
  background-image: url("/assets/img/clients/twolves/landing_striped_background.png");
}

.bkg-lime {
  background-color: #b6ce54;
  border-color: #b6ce54;
}

.bkg-peach {
  background-color: #f7cb7d;
  border-color: #f7cb7d;
}

.bkg-blue-light {
  background-color: #a9d5f1;
  border-color: #a9d5f1;
}

.bkg-navy {
  background-color: #1f4d81;
  border-color: #1f4d81;
}

.bkg-court-green {
  background-color: #88b955;
  border-color: #88b955;
}

.bkg-court-blue {
  background-color: #53a6da;
  border-color: #53a6da;
}

.bkg-court-purple {
  background-color: #603989;
  border-color: #603989;
}

.bkg-club-blue {
  background-color: #53aadd;
  border-color: #53aadd;
}

.price-color {
  height: 25px;
  width: 45px;
  margin-left: 20px;
}

.landing__heading-container {
  border-top: 5px solid var(--theme-secondary-color);
  margin-bottom: 2px;
}
.landing__heading-container .landing__heading-banner {
  background-color: #000;
  background-image: url(/assets/img/clients/landing_page_banner.jpg);
  background-size: cover;
  background-position: top center;
  position: relative;
  padding: 100px 50px 20px;
}
.landing__heading-container .landing__heading-banner h1 {
  color: var(--theme-secondary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 72px;
  padding-top: 20px;
}
.landing__heading-container .landing__heading-banner .landing__heading-content {
  z-index: 2;
  position: relative;
}
.landing__heading-container .landing__heading-banner:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgb(0, 0, 0) 20%, rgba(255, 255, 255, 0) 55%);
}
.landing__heading-container .landing__heading-banner:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 35%);
}
.landing__heading-container .landing__heading-banner .landing__heading-subtitle {
  color: #fff;
  font-size: 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.2em;
}
.landing__heading-container .landing__heading-banner .landing__heading-subtitle strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.landing__heading-container .landing__heading-banner .landing__heading-content-container {
  max-width: 600px;
}
.landing__heading-container .landing__heading-banner .landing__heading-logos {
  margin-top: 20px;
}
.landing__heading-container .landing__heading-banner .landing__heading-content-container-small {
  max-width: 350px;
  color: #fff;
}
.landing__heading-container .landing__heading-banner .landing__heading-hook-large {
  color: var(--theme-secondary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 72px;
}
.landing__heading-container .landing__heading-banner .landing__heading-hook-med {
  color: var(--theme-secondary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.landing__heading-container .landing__heading-banner .landing__heading-hook-small {
  font-size: 14px;
}
.landing__heading-container .landing__heading-banner .landing__heading-hook {
  margin: 40px 0px 20px;
}
.landing__heading-container .landing__heading-banner .landing__heading-hook-description {
  font-size: 13px;
  line-height: 1.5em;
}
.landing__heading-container .landing__heading-banner .landing__heading-cta {
  margin-top: 30px;
}
.landing__heading-container .landing__heading-banner .btn-landing {
  background-color: var(--theme-secondary-color);
  color: var(--theme-tertiary-color);
}
.landing__heading-container .landing__heading-banner .btn-landing:hover {
  background-color: #fff;
  color: #000;
}
.landing__heading-container .landing__heading-banner .btn-landing:focus {
  background-color: var(--theme-secondary-color);
  color: var(--theme-tertiary-color);
}
@media only screen and (max-width: 767px) {
  .landing__heading-container .landing__heading-banner h1 {
    font-size: 48px;
  }
  .landing__heading-container .landing__heading-banner .landing__heading-subtitle {
    font-size: 24px;
  }
}

.landing__how {
  padding: 80px 0px;
}
.landing__how .landing__how-item {
  text-align: center;
  padding-top: 60px;
}
.landing__how .landing__how-heading {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  padding: 20px 0px;
}
.landing__how .landing__how-description {
  padding: 0px 20px;
}

.landing__seats {
  padding: 80px 40px;
}
.landing__seats .landing_-seats-content {
  padding-left: 50px;
  max-width: 85%;
}
.landing__seats .landing__seats-subtitle {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.3em;
  font-weight: 300;
}
.landing__seats .landing__seats-description {
  padding: 20px 0px;
}
@media only screen and (max-width: 767px) {
  .landing__seats .landing_-seats-content {
    padding: 40px;
    max-width: auto;
  }
}

.landing__recapture {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 80px 40px;
}
.landing__recapture h3 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
.landing__recapture .landing__recapture-description {
  font-size: 18px;
  padding: 10px 0px 30px;
}

.landing__packages {
  text-align: left;
  background-color: var(--theme-secondary-color);
  padding: 40px;
}
.landing__packages .landing__packages-header {
  color: var(--theme-primary-color);
  margin-bottom: 40px;
}
.landing__packages .landing__packages-header h2 {
  color: var(--theme-primary-color);
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  padding: 0px;
}
.landing__packages .landing__packages-header .landing__packages-logo img {
  max-width: 150px;
}
.landing__packages .landing__packages-package {
  background-color: #fff;
  border-left: 10px solid var(--theme-secondary-color);
  border-bottom: 10px solid var(--theme-secondary-color);
  text-align: center;
  posiiton: relative;
}
.landing__packages .landing__packages-package .landing__packages-package-spacing {
  padding: 20px 20px 80px;
}
.landing__packages .landing__packages-package .landing__packages-package-title {
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  text-transform: uppercase;
  line-height: 3.5rem;
  font-weight: bold;
  padding-top: 20px;
}
.landing__packages .landing__packages-package .landing__packages-package-series {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  padding-top: 10px;
}
.landing__packages .landing__packages-package .landing__packages-package-description {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  padding: 30px 30px 20px;
  line-height: 1.2rem;
}
.landing__packages .landing__packages-package .landing__packages-package-gameMessage {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: bold;
}
.landing__packages .landing__packages-package .landing__packages-package-whisper {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  top: -20px;
  background-color: #000;
  color: #fff;
  padding: 10px;
  left: 10px;
  right: 10px;
  text-transform: uppercase;
  font-size: 12px;
}
.landing__packages .landing__packages-package .landing__packages-package-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 20px;
}
.landing__packages .landing__packages-package .landing__packages-package-cta .btn {
  background-color: var(--theme-primary-color);
  border: 0px;
}
.landing__packages .landing__packages-package .landing__packages-package-cta .btn:hover {
  background-color: var(--theme-primary-color);
  color: #fff;
}
.landing__packages .landing__packages-package .landing__packages-package-games {
  margin-top: 20px;
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 20px;
}
.landing__packages .landing__packages-package .landing__packages-package-games .landing__packages-package-games-game {
  padding: 10px 5px;
  border-top: 1px solid #c9c9c9;
}
.landing__packages .landing__packages-package .landing__packages-package-games .landing__packages-package-games-game .landing__packages-package-games-game-team {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1rem;
}
.landing__packages .landing__packages-package .landing__packages-package-games .landing__packages-package-games-game .landing__packages-package-games-game-date {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1rem;
  font-weight: bold;
  font-font: "Montserrat", sans-serif;
}
.landing__packages .landing__packages-subtitle {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1.3em;
  color: #fff;
}
.landing__packages .landing__packages-list {
  background-color: #fff;
  border-radius: 12px;
  margin-top: 40px;
}
.landing__packages .landing__packages-list .landing__packages-list-item {
  border-left: 3px solid var(--theme-secondary-color);
  padding-left: 30px;
}
.landing__packages .landing__packages-list .landing__packages-list-item:last-of-type {
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .landing__packages .landing__packages-list .landing__packages-list-item {
    border-top: 3px solid var(--theme-secondary-color);
  }
}
.landing__packages .landing__packages-list .landing__packages-list-item-number {
  margin: 30px 0px 10px;
  background-color: #000;
  padding: 50px 40px;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  font-size: 72px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.landing__packages .landing__packages-list .landing__packages-list-item-number-description {
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
}
.landing__packages .landing__packages-list .landing__packages-list-item-feature {
  border-top: 1px solid #c9c9c9;
  padding: 10px;
  font-size: 14px;
  color: #636363;
}
.landing__packages .landing__packages-list .landing__packages-list-item-feature-number {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 18px;
  display: block;
  color: #000;
}
.landing__packages .landing__packages-list .landing__packages-list-item-cta {
  border-top: 1px solid #c9c9c9;
  padding: 20px;
}

.landing h2 {
  font-size: 60px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .landing h2 {
    font-size: 42px;
  }
}

.player-scroll {
  position: absolute;
  z-index: 10;
}
.player-scroll.player-scroll-right {
  right: -150px;
}
@media only screen and (max-width: 850px) {
  .player-scroll.player-scroll-right {
    display: none;
  }
}
.player-scroll.player-scroll-left {
  left: -100px;
  top: 250px;
}
@media only screen and (max-width: 850px) {
  .player-scroll.player-scroll-left {
    display: none;
  }
}

.loadingDialog .modal-dialog {
  max-width: 250px;
}

.loadingDialog {
  text-align: center;
}

.loadingDialog h4 {
  padding-bottom: 5px;
  color: var(--theme-primary-color);
}

.loadingDialog .smallText {
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
}

.multi-spinner-container-small {
  width: 65px;
  height: 65px;
  position: relative;
  margin: 10px auto;
  overflow: hidden;
}

.multi-spinner-container {
  width: 100px;
  height: 100px;
  position: relative;
  margin: 10px auto;
  overflow: hidden;
}

.multi-spinner {
  position: absolute;
  width: calc(100% - 5.3px);
  height: calc(100% - 5.3px);
  border: 5px solid transparent;
  border-top-color: var(--theme-primary-color);
  border-radius: 50%;
  animation: spin 2.5s cubic-bezier(0.17, 0.49, 0.96, 0.76) infinite;
}

.multi-spinner-container-small .multi-spinner {
  border: 3px solid transparent;
}

.multi-spinner-1 {
  border-top-color: var(--theme-secondary-color);
}

.multi-spinner-2 {
  border-top-color: var(--theme-secondary-color-25);
}

.multi-spinner-3 {
  border-top-color: var(--theme-secondary-color-50);
}

.multi-spinner-4 {
  border-top-color: var(--theme-secondary-color-75);
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.sectionSelect {
  cursor: pointer;
}

.section_seatHolder {
  margin-left: 20px;
}

.gameCard_gameTickets {
  border: 1px solid #c9c9c9;
  background-color: #fff;
  padding: 10px 20px;
  margin-top: 10px;
}
.gameCard_gameTickets .flyout__row--titles {
  margin-top: 0px;
}
.gameCard_gameTickets .flyout__blocktext--lrg {
  font-size: 14px;
  line-height: 1.2rem;
}

.selectableSeat {
  background: #f2f2f2;
  padding: 10px;
  margin: 0px 0px 5px;
  line-height: 0.75rem;
  border: 0px;
  border-left: 5px solid #c9c9c9;
  cursor: pointer;
}
.selectableSeat.is-active {
  border: 5px solid #4782e5;
  background-color: #1f65da;
  color: #fff;
}

.game-active {
  background-color: #E2EBF3;
  border: 3px solid #0C233F;
}

.cart_gameSeatSelection {
  margin-bottom: 20px;
  margin-top: 10px;
}
.cart_gameSeatSelection h6 {
  text-transform: uppercase;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
}

.cart_gameSeatSame {
  margin-bottom: 10px;
  margin-top: 10px;
}
.cart_gameSeatSame h6 {
  text-transform: uppercase;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 5px;
}
.cart_gameSeatSame small {
  color: #A0A2A3;
  line-height: 1rem;
  display: block;
}

.icon-image img {
  max-height: 100px;
}

.twolves-filter .icon-image {
  display: none;
}
.twolves-filter .modal-content {
  border: 6px solid var(--theme-primary-color);
}
.twolves-filter .title {
  margin-top: -70px;
}
.twolves-filter .modal-body {
  max-width: 420px;
}
.twolves-filter .subtitle {
  color: var(--theme-primary-color);
  text-transform: none;
}
.twolves-filter .subtitle .big-text {
  display: block;
  font-size: 48px;
  margin-bottom: 20px;
  margin-top: 10px;
  line-height: 3rem;
}
@media only screen and (max-width: 767px) {
  .twolves-filter .subtitle .big-text {
    font-size: 38px;
    line-height: 2.8rem;
  }
}
.twolves-filter .description .content-description {
  font-size: 14px;
}
.twolves-filter .description .filter-continue {
  margin-top: 20px;
}
.twolves-filter .description .filter-button {
  margin-top: 20px;
  border: 2px solid var(--theme-primary-color);
  transition: all 0.2s ease-in-out;
}
.twolves-filter .description .filter-button:hover, .twolves-filter .description .filter-button.active {
  transform: scale(1.1);
}
.twolves-filter .description .filter-button.active {
  color: #fff;
}
.twolves-filter .description .filter-button.active .filter-button-animation::before {
  box-shadow: inset 0 0 0 1px #fff;
}
.twolves-filter .description .filter-button .filter-button-animation {
  position: relative;
  padding: 10px;
  cursor: pointer;
}
.twolves-filter .description .filter-button .filter-button-animation::before, .twolves-filter .description .filter-button .filter-button-animation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.25s ease;
}
.twolves-filter .description .filter-button .filter-button-animation::after {
  box-shadow: inset 0 0 0 1px var(--theme-primary-color);
}
.twolves-filter .description .filter-button .filter-button-animation::before {
  background: var(--theme-secondary-color);
  box-shadow: inset 0 0 0 1000px #fff;
  z-index: 0;
}
.twolves-filter .description .filter-button .filter-button-animation:hover::before {
  box-shadow: inset 0 0 0 1px #fff;
}
.twolves-filter .description .filter-button .filter-button-relative {
  position: relative;
  z-index: 1;
}
.twolves-filter .description .filter-button .filter-button-title {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
.twolves-filter .description .filter-button .filter-button-description {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1.2rem;
  padding: 10px 10px;
  text-align: center;
}
.twolves-filter .description .filter-button .filter-button-description .plus-signs {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
}

.gt_uga_modal .icon-image {
  margin-top: -100px;
}
.gt_uga_modal .title {
  font-weight: bold;
}
.gt_uga_modal .list-box {
  max-width: 300px;
  margin: 20px auto;
}
.gt_uga_modal .team-logo {
  max-width: 200px;
  margin: 20px auto;
}
.gt_uga_modal .team-dt {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}
.gt_uga_modal .team-close {
  font-size: 12px;
  margin-top: 20px;
}
.gt_uga_modal .team-close a {
  text-decoration: underline;
}

.map__svg {
  background: center center no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
}

.block {
  transition: opacity 0.5s, fill 0.5s;
  opacity: 0.75;
  fill: #ccc;
  stroke: white;
  stroke-width: 8px;
}

.label {
  pointer-events: none;
  fill: #000;
  transform: translate(-100px, 0);
}

.landing__heading-solid {
  background-color: var(--theme-primary-color);
  color: var(--theme-tertiary-color);
  border-top: 15px solid var(--theme-secondary-color);
  position: relative;
  z-index: 2;
  background-position: bottom left;
}
.landing__heading-solid .landing__heading-image {
  background-image: url("/assets/img/clients/giants/landing_banner_background.jpg");
  position: absolute;
  background-position: center center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.35;
  z-index: 1;
  background-size: cover;
}
.landing__heading-solid .landing__heading-solid-banner {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
  z-index: 3;
}
.landing__heading-solid h1 {
  color: var(--theme-tertiary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 72px;
}
.landing__heading-solid .landing__heading-subtitle {
  font-size: 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.4em;
}
.landing__heading-solid .landing__heading-subtitle strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background-color: #fff;
  color: var(--theme-primary-color);
  padding: 5px;
}
.landing__heading-solid .landing__heading-content-container {
  max-width: 600px;
  margin: 0 auto;
}
.landing__heading-solid .landing__heading-logos {
  margin-top: 20px;
}
.landing__heading-solid .landing__heading-content-container-small {
  max-width: 450px;
  margin: 0 auto;
}
.landing__heading-solid .landing__heading-hook-large {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 72px;
}
.landing__heading-solid .landing__heading-hook-med {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.landing__heading-solid .landing__heading-hook-small {
  font-size: 14px;
}
.landing__heading-solid .landing__heading-hook {
  margin: 40px 0px 20px;
}
.landing__heading-solid .landing__heading-hook-description {
  font-size: 13px;
  line-height: 1.5em;
}
.landing__heading-solid .landing__heading-cta {
  margin-top: 30px;
  margin-bottom: 30px;
}
.landing__heading-solid .btn-landing {
  background-color: var(--theme-secondary-color);
  color: var(--theme-tertiary-color);
}
.landing__heading-solid .btn-landing:hover {
  background-color: var(--theme-tertiary-color);
  color: var(--theme-primary-color);
}
.landing__heading-solid .btn-landing:focus {
  background-color: var(--theme-tertiary-color);
  color: var(--theme-primary-color);
}
@media only screen and (max-width: 767px) {
  .landing__heading-solid h1 {
    font-size: 48px;
  }
  .landing__heading-solid .landing__heading-subtitle {
    font-size: 24px;
  }
}

.login_details {
  position: absolute;
  top: 40px;
  right: 0;
  color: #fff;
}
.login_details a {
  color: #fff;
  text-decoration: underline;
}

.account_credit {
  background-color: #d7e6ff;
  margin-top: 15px;
  padding: 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}
.account_credit strong {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.hosted-field {
  height: calc(1.5em + 0.75rem + 2px);
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.small-ticket-disclaimer {
  font-size: 13px;
  text-transform: none;
  line-height: 1rem;
}

.shadowed_image {
  border: 4px solid #fff;
  box-shadow: 0px 0px 15px -4px rgba(0, 0, 0, 0.82);
}

.landing__giants .landing__intro {
  position: relative;
}
.landing__giants .landing__intro:after {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("/assets/img/clients/giants/patterned_background.jpg");
  z-index: 1;
  margin-bottom: 20px;
}
.landing__giants .landing__intro-container {
  max-width: 860px;
  margin: 0 auto;
  background-color: var(--theme-primary-color);
  color: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 150px 40px;
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.82);
}
@media only screen and (max-width: 767px) {
  .landing__giants .landing__intro-container {
    margin-left: 20px;
    margin-right: 20px;
    padding: 30px 40px;
  }
}
.landing__giants .landing__intro-cta {
  padding-top: 50px;
  padding-bottom: 20px;
}
.landing__giants .landing__intro-message {
  font-size: 11px;
}
.landing__giants .landing__container {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px;
}
.landing__giants .landing__strip {
  text-align: center;
}
.landing__giants .landing__events {
  text-align: center;
  padding: 50px 0px;
}
.landing__giants .landing__events .landing__events-list {
  margin-top: 20px;
}
.landing__giants .landing__events .landing__events-list .landing__events-list-item {
  margin-top: 20px;
  padding: 20px;
}
.landing__giants .landing__events .landing__events-list .landing__events-list-item-heading {
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 24px;
}
.landing__giants .landing__events .landing__events-list .landing__events-list-item-date {
  font-size: 18px;
  padding: 5px 0 10px 0;
}
.landing__giants .landing__events .landing__events-list .landing__events-list-item-desc {
  font-weight: 200;
  font-size: 12px;
}
.landing__giants h2 {
  font-family: "Ropa Sans", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 48px;
}
.landing__giants .landing__subtitle {
  font-family: "Ropa Sans", sans-serif;
  font-weight: 200;
  font-size: 14px;
}
.landing__giants h3 {
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 0px;
}
@media only screen and (max-width: 767px) {
  .landing__giants h3 {
    font-size: 24px;
  }
}
.landing__giants .landing__theme {
  background-color: #2d221b;
  color: #fff;
  text-align: center;
  margin-top: -20px;
  padding-top: 40px;
  padding-bottom: 20px;
}
.landing__giants .landing__theme h3 {
  color: #fff;
}
.landing__giants .landing__theme .landing__theme-date {
  font-size: 18px;
  font-weight: 400;
}
.landing__giants .landing__theme .landing__theme-image {
  text-align: center;
  max-width: 600px;
  margin: 20px auto 20px;
}
.landing__giants .landing__theme .landing__theme-cta {
  margin-top: 20px;
}
.landing__giants .landing__subtitle {
  font-size: 12px;
}
.landing__giants .landing__label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 200;
}
.landing__giants .landing__join {
  background-color: #2d2b2c;
  color: #fff;
  border-top: 8px solid #87714d;
  border-bottom: 8px solid #87714d;
  text-align: center;
  padding: 40px 20px;
}
.landing__giants .landing__join h3 {
  color: #fff;
}
.landing__giants .landing__join .landing__recapture-description {
  font-size: 14px;
  font-weight: 200;
  padding: 10px 0 20px;
}
.landing__giants .landing__join .btn {
  text-transform: uppercase;
  font-family: "Ropa Sans", sans-serif;
  font-weight: 600;
}

.btn {
  border-radius: 0px;
}

.btn-cloud, #okta-sign-in.auth-container .button-primary, .btn-cloud-inverse {
  background-color: var(--theme-secondary-color);
  border: 3px solid #fff;
  color: var(--theme-tertiary-color);
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 40px;
  box-shadow: 0px 0px 15px -4px rgba(0, 0, 0, 0.82);
}
.btn-cloud:hover, #okta-sign-in.auth-container .button-primary:hover, .btn-cloud-inverse:hover {
  color: #fff;
  background-color: var(--theme-primary-color);
}
.btn-cloud:active, #okta-sign-in.auth-container .button-primary:active, .btn-cloud-inverse:active {
  color: var(--theme-primary-color) !important;
  background-color: var(--theme-tertiary-color) !important;
  border-color: var(--theme-secondary-color) !important;
}
.btn-cloud.is-disabled, #okta-sign-in.auth-container .is-disabled.button-primary, .btn-cloud-inverse.is-disabled {
  background-color: #c9c9c9;
  color: #000;
}

.btn-cloud-inverse {
  background-color: var(--theme-primary-color);
}
.btn-cloud-inverse:hover {
  background-color: var(--theme-primary-color-50);
}

.giants__shell-header {
  background-color: var(--theme-primary-color);
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .giants__shell-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
}
.turnStyle_calendar {
  display: none;
  margin-bottom: 50px;
}
.turnStyle_calendar .turnStyle_calendar-weekLabels {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.turnStyle_calendar .turnStyle_calendar-weekLabels .turnStyle_calendar-weekLabels-label {
  width: 14.2857142857%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
}
.turnStyle_calendar .turnStyle_calendar-selectable .box-content {
  margin-bottom: 0px;
  line-height: 1.3rem;
}
.turnStyle_calendar .turnStyle_calendar-selectable .gameCard_checkbox {
  display: none;
}
.turnStyle_calendar .turnStyle_calendar-selectable .company-logo {
  margin-top: 20px;
  text-align: center;
}
.turnStyle_calendar .turnStyle_calendar-selectable .company-logo img {
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .turnStyle_calendar .turnStyle_calendar-selectable .company-logo img {
    width: 80%;
  }
}
.turnStyle_calendar .turnStyle_calendar-selectable .game-whisper .link-btn {
  font-size: 12px;
  padding: 5px;
}
.turnStyle_calendar .turnStyle_calendar-selectable .card_label {
  font-size: 9px;
}
.turnStyle_calendar .turnStyle_calendar-selectable .extra_card_padding {
  padding: 10px 5px;
}
.turnStyle_calendar .turnStyle_calendar-selectable .card_date {
  font-size: 14px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .turnStyle_calendar .turnStyle_calendar-selectable .game-whisper {
    display: none;
  }
  .turnStyle_calendar .turnStyle_calendar-selectable .box-content {
    height: 100px;
  }
  .turnStyle_calendar .turnStyle_calendar-selectable .card_label {
    display: none;
  }
  .turnStyle_calendar .turnStyle_calendar-selectable .card_title {
    display: none;
  }
  .turnStyle_calendar .turnStyle_calendar-selectable .turnStyle_whisper_small {
    display: none;
  }
  .turnStyle_calendar .turnStyle_calendar-selectable .company-logo {
    margin-top: 15px;
  }
  .turnStyle_calendar .turnStyle_calendar-selectable .card_date {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    text-align: center;
    line-height: 1rem;
  }
  .turnStyle_calendar .turnStyle_calendar-selectable .requires-box {
    margin-top: 0;
  }
  .turnStyle_calendar .turnStyle_calendar-selectable .requires-box .extra_card_padding {
    padding-top: 10px;
  }
}
.turnStyle_calendar .turnStyle_calendar-monthLabel {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.turnStyle_calendar .turnStyle_calendar-week {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.turnStyle_calendar .turnStyle_calendar-week .turnStyle_calendar-day {
  width: 14.2857142857%;
  min-height: 80px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  position: relative;
}
.turnStyle_calendar .turnStyle_calendar-week .turnStyle_calendar-day:last-of-type .turnStyle_calendar-selectable {
  border-right: 1px solid #e2e2e2;
}
.turnStyle_calendar .turnStyle_calendar-week .turnStyle_calendar-day .turnStyle_calendar-selectable {
  border-top: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  padding: 3px;
  width: 100%;
}
.turnStyle_calendar .turnStyle_calendar-week .turnStyle_calendar-day .turnStyle_calendar-day-number {
  font-size: 12px;
  display: block;
  color: #9c9c9c;
  position: absolute;
  z-index: 1;
  left: 10px;
  top: 10px;
}
@media only screen and (max-width: 768px) {
  .turnStyle_calendar .turnStyle_calendar-week .turnStyle_calendar-day .turnStyle_calendar-day-number {
    left: 5px;
    top: 0;
  }
}
.turnStyle_calendar .turnStyle_calendar-week:last-of-type .turnStyle_calendar-day .turnStyle_calendar-selectable {
  border-bottom: 1px solid #e2e2e2;
}
.turnStyle_calendar .turnStyle_calendar-week .turnStyle_calendar-day-no {
  width: 14.2857142857%;
  min-height: 80px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  position: relative;
}
.turnStyle_calendar .turnStyle_calendar-week .turnStyle_calendar-day-no .turnStyle_calendar-selectable-no {
  border-left: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
  padding: 3px;
  width: 100%;
}
.turnStyle_calendar .turnStyle_calendar-week .turnStyle_calendar-day-no ~ .turnStyle_calendar-day-no .turnStyle_calendar-selectable-no {
  border-left: none;
}

.mlb_filter-bar {
  position: relative;
  height: 30px;
  margin-bottom: 25px;
}
.mlb_filter-bar .mlb_filters {
  position: absolute;
  right: 0;
}
.mlb_filter-bar .mlb_filters .nav-link {
  color: #636363;
}
.mlb_filter-bar .mlb_filters .nav-link:hover {
  background-color: #e9e9e9;
}
.mlb_filter-bar .mlb_filters .nav-link.active {
  background-color: var(--theme-primary-color);
  color: #fff;
}

.cloud_club_status {
  background-color: var(--theme-secondary-color);
  padding: 10px;
  margin-bottom: 20px;
  color: var(--theme-tertiary-color);
}
.cloud_club_status .cloud_club_status-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}
.cloud_club_status .cloud_club_status-title a {
  color: #fff;
}
.cloud_club_status .cloud_club_status-logout {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 200;
  margin-top: 10px;
}
.cloud_club_status .cloud_club_status-logout a {
  color: #fff;
  text-decoration: underline;
}
.cloud_club_status .cloud_club_status-logout a:hover {
  text-decoration: none;
}
.cloud_club_status .cloud_club_status-item {
  font-size: 12px;
  margin-top: 10px;
}
.cloud_club_status .cloud_club_status-item .cloud_club_status-item-title {
  font-weight: 800;
}
.cloud_club_status .cloud_club_status-item .cloud_club_status-item-value {
  text-align: right;
}
.cloud_club_status .cloud_club_status-item .cloud_club_status-item-credits {
  font-weight: 800;
  font-size: 24px;
}

.shopping_cart_open {
  font-size: 18px;
  margin-top: 5px;
}

.form_cta_sticky {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .form_cta_sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 8;
    padding: 10px;
    margin-bottom: 0px;
    box-shadow: 0px -7px 14px -4px rgba(0, 0, 0, 0.59);
  }
  .form_cta_sticky .btn-cloud, .form_cta_sticky #okta-sign-in.auth-container .button-primary, #okta-sign-in.auth-container .form_cta_sticky .button-primary {
    width: 100%;
  }
}

.cloudClub-game .extra_card_padding {
  padding: 10px 10px 10px 0;
}
.cloudClub-game .requires-box .extra_card_padding {
  padding-top: 25px;
}
.cloudClub-game .checkbox-bg_absolute {
  display: none;
}
.cloudClub-game .checkbox_col {
  display: none;
}
.cloudClub-game .card_title.large {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.5rem;
}
.cloudClub-game .card_date.large {
  font-size: 14px;
}
.cloudClub-game .company-logo {
  margin: 10px;
}
.cloudClub-game .turnStyle_whisper_small {
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  background-color: var(--theme-primary-color);
  border-color: #87714d;
}

.cloud_club-accountCredit {
  display: none;
}
@media only screen and (max-width: 768px) {
  .cloud_club-accountCredit {
    display: block;
  }
}

.cloud_club-accountCredit {
  font-family: "Ropa Sans", sans-serif;
  font-weight: 200;
  color: var(--theme-primary-color);
  margin-bottom: 10px;
  font-size: 14px;
}
.cloud_club-accountCredit span {
  font-weight: 800;
}

.turnStyle_OKTA_login {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 100000;
  overflow: scroll;
  display: none;
}

.no-scroll {
  overflow: hidden;
}

#okta-sign-in .auth-org-logo {
  max-height: 80px !important;
}

#okta-sign-in.auth-container .button-primary {
  background: none !important;
  background-color: var(--theme-secondary-color) !important;
  border-color: var(--theme-tertiary-color) !important;
  box-shadow: 0px 0px 15px -4px rgba(0, 0, 0, 0.82) !important;
  width: 100% !important;
  height: auto !important;
}
#okta-sign-in.auth-container .button-primary:hover {
  color: #fff;
  background-color: var(--theme-primary-color) !important;
}
#okta-sign-in.auth-container .button-primary:active {
  color: var(--theme-primary-color) !important;
  background-color: var(--theme-tertiary-color) !important;
  border-color: var(--theme-secondary-color) !important;
}

.seatingChart_selectable {
  cursor: pointer;
}
.seatingChart_selectable:hover {
  stroke: #3375b7;
  stroke-width: 6px;
  stroke-linejoin: round;
}

.seatingChart_seat {
  fill: #a8b1b6 !important;
}

.seatingChart_selectable_seat {
  cursor: pointer;
  fill: var(--theme-secondary-color) !important;
}
.seatingChart_selectable_seat.is-active {
  fill: #4782e5 !important;
}

.seatingChart_selectable_no_hover {
  cursor: pointer;
}

.content-label {
  margin-top: 20px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
}

.gameCard_gameTickets {
  position: relative;
}

.gameCard_gameTickets-cancel {
  position: absolute;
  display: inline-block;
  border: 1px solid #c9c9c9;
  padding: 5px 8px;
  border-radius: 50px;
  top: -10px;
  right: -15px;
  background-color: #fff;
  cursor: pointer;
  font-size: 24px;
}
.gameCard_gameTickets-cancel:hover {
  color: var(--theme-secondary-color);
  border: 1px solid var(--theme-secondary-color);
}

.position_relative {
  position: relative;
}

.flyout__submit {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
}

.accordion-content {
  padding: 0px 15px;
}
.accordion-content p small {
  color: #78bc43;
  text-transform: uppercase;
  font-size: 13px;
  display: block;
  margin-bottom: -7px;
}

.accordion .card-body {
  font-size: 14px;
}

a[aria-expanded=true] {
  border-color: transparent;
  background-color: #0b233f;
  color: #fff;
}

.nav-tabs {
  font-size: 12px;
  text-transform: uppercase;
}
.nav-tabs .nav-item {
  border-width: 0 0 1px 0;
  border-color: #dee2e6;
  color: #666;
}
.nav-tabs .nav-item.active {
  border-width: 0 0 1px 0;
  border-color: #266194;
  color: #232323;
}
.nav-tabs .nav-item:hover {
  border-width: 0 0 1px 0;
  border-color: var(--theme-secondary-color);
  color: #232323;
}

.btn-link {
  font-weight: 900;
  color: var(--theme-secondary-color);
  text-decoration: none;
}

.card-header-t {
  border-bottom: 1px solid #c9c9c9;
}

.landing__heading-flextix {
  background-color: #000;
}
.landing__heading-flextix h1 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.landing__heading-flextix h3 {
  font-size: 72px;
  text-transform: uppercase;
  color: var(--theme-secondary-color);
}

.shoppingCart_open_seats_list {
  padding: 0 10px;
}

.ada_seating {
  margin: 5px 0;
  font-size: 14px;
  text-align: right;
  font-family: "Montserrat", sans-serif;
}
.ada_seating input {
  display: none;
}
.ada_seating em {
  background-color: #f0f0f0;
  padding: 10px;
  cursor: pointer;
  border-radius: 12px;
}
.ada_seating em:before {
  margin-right: 10px;
}
.ada_seating em:hover {
  background-color: var(--theme-secondary-color);
  color: #fff;
}
.ada_seating.active em {
  background-color: var(--theme-primary-color);
  color: #fff;
}

.giants_buy_credit .modal-dialog {
  transform: none !important;
  top: 0;
  left: 0;
  right: 0;
  max-width: 750px;
}
.giants_buy_credit .modal-dialog .modal-body {
  max-width: 100%;
}
.giants_buy_credit .modal-dialog .modal-body .icon-image img {
  max-width: 250px;
}

.rockets-offer-margin {
  margin-top: 30px;
}
.rockets-offer {
  border-radius: 12px;
  background-color: #fff;
  height: 100%;
  text-align: center;
  box-shadow: 0px 0px 13px 6px rgba(0, 0, 0, 0.27);
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}

.rockets-offer-container {
  width: 95%;
  margin: 0 auto;
}

.rockets-pick-amount {
  font-size: 48px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  color: var(--theme-primary-color);
  line-height: 60px;
  padding-top: 40px;
  padding-bottom: 20px;
}
.rockets-pick-amount span {
  font-size: 100px;
}

.rockets-pick-label {
  position: absolute;
  top: -30px;
  color: #fff;
  left: 30px;
  right: 0;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-weight: 900;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.rockets-pick-incentive {
  background-color: var(--theme-secondary-color);
  color: #fff;
  margin-left: -10px;
  margin-right: -10px;
  box-shadow: 0px 5px 13px -2px rgba(0, 0, 0, 0.4);
}

.rockets-pricing {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  padding: 50px 0 30px;
  font-weight: 200;
}
.rockets-pricing span {
  font-size: 28px;
  font-weight: 900;
}

.rockets-fine-print {
  font-weight: 200;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  padding: 20px;
}

.btn-rockets {
  background-color: var(--theme-secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #fff;
  padding: 15px 30px;
}
.btn-rockets:hover {
  color: #fff;
  background-color: var(--theme-primary-color);
}

.btn-rockets-dark {
  background-color: var(--theme-primary-color);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #fff;
  padding: 15px 30px;
}
.btn-rockets-dark:hover {
  color: #fff;
  background-color: var(--theme-secondary-color);
}

.btn-rockets-light {
  background-color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: var(--theme-secondary-color);
  padding: 15px 30px;
}
.btn-rockets-light:hover {
  color: #fff;
  background-color: var(--theme-secondary-color);
}

.rockets-pick-incentive {
  padding: 20px 40px;
  text-align: center;
}

.rockets-pick-incentive-inline {
  font-family: "Montserrat", sans-serif;
  text-align: left;
  display: block;
  background-color: var(--theme-primary-color);
  color: #fff;
  margin-left: -15px;
  margin-right: -15px;
  padding: 5px 40px;
  text-transform: uppercase;
  font-size: 14px;
}
.rockets-pick-incentive-inline .rockets-incentive-number {
  font-size: 36px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  line-height: 72px;
  padding-top: 10px;
  text-align: center;
  width: 100%;
}
.rockets-pick-incentive-inline strong {
  font-weight: 900;
  font-size: 18px;
}

.rockets-incentive-number {
  font-size: 48px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  line-height: 42px;
  padding-top: 10px;
  text-align: left;
  width: 60%;
  margin-left: 10px;
}

.rockets-incentive-label {
  font-size: 24px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  padding-top: 10px;
}

.btn-canucks {
  text-transform: uppercase;
  background-color: var(--theme-secondary-color);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  display: block;
  max-width: 450px;
  text-align: center;
  margin: 0 auto;
}
.btn-canucks:hover {
  background-color: var(--theme-primary-color);
  color: #fff;
}

.js-same-seat-message {
  color: #ee2e24;
  font-size: 12px;
  margin: 0;
  padding: 0;
}

.exchange_seat_card {
  background-color: #c9c9c9;
  border: 1px solid #c9c9c9;
  margin-right: 15px;
  display: inline-block;
  width: 130px;
  text-align: center;
  font-size: 12px;
  line-height: 1.2rem;
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}
.exchange_seat_card.is-disabled {
  opacity: 0.3;
}
.exchange_seat_card.exchange_seat_card-parking {
  background-color: #c1fff6;
}
.exchange_seat_card.active {
  background-color: var(--theme-secondary-color);
  color: #fff;
}
.exchange_seat_card.active .exchange_seat_card_check {
  color: #000;
}
.exchange_seat_card .exchange_seat_card_section {
  padding: 5px 10px 0px;
}
.exchange_seat_card .exchange_seat_card_seat {
  font-size: 20px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  padding: 0px 0px 10px 0px;
}
.exchange_seat_card .exchange_seat_card_check {
  padding: 15px;
  font-size: 24px;
  background-color: #fff;
}
.exchange_seat_card input {
  display: none;
}
.exchange_seat_card .fa-check-square-o {
  display: none;
}
.exchange_seat_card .fa-square-o {
  display: block;
}
.exchange_seat_card.active .fa-check-square-o {
  display: block;
}
.exchange_seat_card.active .fa-square-o {
  display: none;
}

.shoppingCart_open_exchange_list .exchange_seat_card {
  width: 110px;
}

.exchange_ticket_game_v2 {
  position: relative;
  background: rgb(132, 132, 132);
  background: linear-gradient(0deg, rgb(20, 20, 20) 0%, rgb(132, 132, 132) 100%);
  max-height: 250px;
  height: 250px;
}
.exchange_ticket_game_v2 .exchange_ticket_game-logo {
  position: absolute;
  top: 0;
  background-size: cover;
  bottom: 0;
  margin: 0;
  left: 50px;
  right: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  filter: grayscale(90%);
}
.exchange_ticket_game_v2 .exchange_ticket_game-gradient {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 20%, rgba(255, 255, 255, 0) 60%);
}
.exchange_ticket_game_v2 .exchange_ticket_game-details {
  position: absolute;
  z-index: 3;
  color: #fff;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: left;
}
.exchange_ticket_game_v2 .exchange_ticket_game-details .exchange_ticket_game-details-day {
  font-size: 36px;
  padding: 5px 0;
}
.exchange_ticket_game_v2 .exchange_ticket_game-details .exchange_ticket_game-details-date {
  text-align: center;
  border-right: 1px solid #fff;
}
.exchange_ticket_game_v2 .exchange_ticket_game-details .exchange_ticket_game-details-team {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.walletItem_exchange .exchange_ticket_game_v2 {
  max-height: 100px;
  height: 100px;
}
.walletItem_exchange .exchange_ticket_game-details-day {
  font-size: 18px;
  padding: 5px 0;
}
.walletItem_exchange .exchange_ticket_game-details-date {
  text-align: center;
  border-right: 1px solid #e2e2e2;
  font-size: 12px;
}
.walletItem_exchange .exchange_ticket_game-details-team {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
.walletItem_exchange .exchange_ticket_game-details-time {
  font-size: 10px;
}
.walletItem_exchange .walletItem_exchange-details {
  border: 2px solid #fff;
  background: var(--theme-primary-color);
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.5);
  position: relative;
  margin: -20px -10px;
  z-index: 5;
  border-radius: 8px;
  color: #fff;
  padding: 10px;
  font-size: 12px;
}
.walletItem_exchange .walletItem_exchange-quantity {
  font-size: 24px;
  background-color: #fff;
  color: #000;
  padding: 20px 35px 20px 25px;
  margin: -20px 0;
  border-radius: 50px;
  margin-right: 10px;
  font-weight: 800;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.5);
}
.walletItem_exchange .walletItem_exchange-label {
  text-transform: uppercase;
}
.walletItem_exchange .walletItem_exchange-label strong {
  font-weight: 800;
}
.walletItem_exchange .walletItem_exchange-details-link {
  text-align: right;
  padding-right: 10px;
}
.walletItem_exchange .walletItem_exchange-details-link a {
  color: var(--theme-secondary-color-50);
  text-decoration: underline;
}
.walletItem_exchange .walletItem_exchange-details-link a:hover {
  color: var(--theme-tertiary-color);
}
.walletItem_exchange .exchange_ticket_game-details-date {
  line-height: 1rem;
  font-size: 10px;
}
.walletItem_exchange .exchange_ticket_game-details-day {
  font-size: 14px;
}
.walletItem_exchange .walletItem_exchange-returned {
  font-size: 10px;
  padding: 10px 10px 35px;
}
.walletItem_exchange .walletItem_exchange-returned-logo img {
  margin-top: 3 px;
  max-height: 15px;
}

.walletItem {
  margin-bottom: 10px;
  cursor: default;
}
.walletItem .exchange_ticket_game_v2 {
  max-height: 150px;
  height: 150px;
}
.walletItem .exchange_ticket_game_v2 .exchange_ticket_game-tickets {
  background-color: var(--theme-secondary-color);
  color: #fff;
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px;
  font-size: 11px;
  text-transform: uppercase;
  z-index: 5;
}
.walletItem .exchange_ticket_game_v2 .exchange_ticket_game-returnTickets {
  background-color: var(--theme-tertiary-color);
  color: #000;
  display: inline-block;
  padding: 5px;
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  margin-top: -5px;
  margin-left: 5px;
  margin-right: -5px;
  margin-bottom: -5px;
  font-weight: bold;
}
.walletItem .exchange_ticket_game_v2 .exchange_ticket_game-returnTickets:hover {
  background-color: var(--theme-primary-color);
  color: #fff;
}
.walletItem .exchange_ticket_game_v2 .exchange_ticket_game-details-date {
  font-size: 14px;
}
.walletItem .exchange_ticket_game_v2 .exchange_ticket_game-details-date .exchange_ticket_game-details-day {
  font-size: 24px;
}
.walletItem .exchange_ticket_game_v2 .exchange_ticket_game-details-team {
  font-size: 18px;
}

.exchange_ticket_game_v2-isParking {
  height: 150px !important;
}
.exchange_ticket_game_v2-isParking .exchange_ticket_game-details {
  left: 50px !important;
}
.exchange_ticket_game_v2-isParking .exchange_ticket_game-parking {
  background-color: var(--theme-secondary-color);
  color: #fff;
  position: absolute;
  z-index: 3;
  left: 0;
  width: 50px;
  top: 0;
  bottom: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.exchange_ticket_game_v2-isParking .exchange_ticket_game-parking-icon {
  font-size: 24px;
  position: absolute;
  bottom: 20px;
  left: 10px;
  z-index: 6;
}

.exchange_ticket_game {
  position: relative;
  background: rgb(158, 167, 179);
  background: linear-gradient(0deg, rgb(20, 20, 20) 0%, rgb(132, 132, 132) 100%);
  max-height: 250px;
  height: 250px;
}
.exchange_ticket_game .exchange_ticket_game-logo {
  position: absolute;
  top: 0;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: 30px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
.exchange_ticket_game .exchange_ticket_game-gradient {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 50%);
}
.exchange_ticket_game .exchange_ticket_game-details {
  position: absolute;
  z-index: 3;
  color: #fff;
  left: 0;
  right: 0;
  bottom: 20px;
}
.exchange_ticket_game .exchange_ticket_game-details .card_title.large {
  font-size: 20px;
  line-height: 2rem;
}
.exchange_ticket_game .exchange_ticket_game-details .card_date.large {
  font-size: 14px;
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
}

.ts_exchange-confirmation {
  margin: 20px 0;
}

.ts_exchange-confirmation-swap {
  text-align: center;
  font-size: 56px;
  color: #c9c9c9;
  margin-top: 50px;
}

.ts_exchange-confirmation-tickets {
  padding: 20px;
}

.ts_exchange-confirmation-total {
  border-top: 1px solid #c9c9c9;
  margin-top: 25px;
  padding: 25px !important;
}

.exchange_ticket_game-label {
  position: absolute;
  top: 20px;
  right: 20px;
}

.exchange_ticket_game-label-item {
  display: inline-block;
  padding: 5px;
  background-color: #00aa00;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}
.exchange_ticket_game-label-item.t_label_value {
  background-color: #00ac45;
}
.exchange_ticket_game-label-item.t_label_select {
  background-color: #3d145c;
}
.exchange_ticket_game-label-item.t_label_premier {
  background-color: #0068a1;
}
.exchange_ticket_game-label-item.t_label_marquee {
  background-color: #9ca2a2;
}
.exchange_ticket_game-label-item.t_label_elite {
  background-color: #b50018;
}

.exchange_ticket_game-label-inline {
  margin-top: 5px;
}
.exchange_ticket_game-label-inline .exchange_ticket_game-label-item {
  font-size: 10px;
  background-color: #000;
}

.exchange_ticket_ticket {
  font-size: 48px;
  padding: 0 10px 10px;
  font-weight: 900;
  text-align: center;
}
.exchange_ticket_ticket span {
  font-size: 24px;
}

.full-size-image-container {
  width: 100%;
  height: 80vh;
  position: relative;
  background-color: #142b46;
}

.full-size-image {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.full-size-image img {
  width: 100%;
}

.turnstyle_login {
  height: 100vh;
  position: relative;
}
.turnstyle_login .turnstyle_login_cta {
  position: absolute;
  z-index: 5;
  bottom: 5%;
  left: 5%;
  right: 5%;
}
.turnstyle_login .turnstyle_login_background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.turnstyle_login .turnstyle_login_fade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0) 40%);
}
.turnstyle_login.turnstyle_login_is-logo .turnstyle_login_cta {
  background-color: var(--theme-primary-color);
  padding: 5% 5% 10%;
  bottom: 0;
  left: 0;
  right: 0;
}
.turnstyle_login .turnstyle_login_logo {
  z-index: 1;
  position: absolute;
  left: 25%;
  right: 25%;
  top: 5%;
}

.turnStyle_OKTA_login #okta-sign-in.auth-container.main-container {
  position: fixed;
  bottom: 0;
  top: 5%;
  left: 0;
  right: 0;
  z-index: 10;
  margin-bottom: 0px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.turnstyle_login_global .loadingDialog .modal-dialog {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.turnstyle_login_global .loadingDialog .modal-content {
  background: none;
  color: #fff;
}
.turnstyle_login_global .loadingDialog .modal-content h4 {
  color: #fff;
}

.multi-spinner-1 {
  border-top-color: var(--theme-secondary-color);
}

.multi-spinner-2 {
  border-top-color: var(--theme-secondary-color-25);
}

.multi-spinner-3 {
  border-top-color: var(--theme-secondary-color-50);
}

.multi-spinner-4 {
  border-top-color: var(--theme-secondary-color-75);
}

.account_heading {
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  margin-top: 20px;
  margin-bottom: 20px;
}

.account_button_bottom {
  margin-bottom: 50px;
}

.account_button_holder {
  position: fixed;
  bottom: -100px;
  background-color: #fff;
  border-top: 1px solid #9c9c9c;
  left: 0;
  right: 0;
  padding: 10px;
  box-shadow: 0px -9px 20px -10px rgba(0, 0, 0, 0.63);
}

.games_other_tickets_alert {
  box-shadow: 0px -9px 20px -10px rgba(0, 0, 0, 0.63);
  position: fixed;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 102;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 20px;
  overflow-y: scroll;
}

.games_other_tickets_alert_wrapper {
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 101;
}

.games_other_tickets_alert-seats {
  margin-bottom: 20px;
}
.games_other_tickets_alert-seats .fa-circle {
  font-size: 8px;
  padding-left: 4px;
  padding-right: 4px;
}

.benefit-request-congrats {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.ts_card {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.ts_card h1, .ts_card h2, .ts_card h3, .ts_card h4, .ts_card h5, .ts_card h6 {
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
}
.ts_card .btn {
  margin-top: 1rem !important;
}
.ts_card p {
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}
.ts_card .ts_card-date {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #636363;
  margin: 0 1rem;
  padding: 1rem 0;
  border-top: 1px solid #c9c9c9;
}
.ts_card .ts_card-content {
  padding: 1rem;
}
.ts_card img.top {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.ts_card img.img-fluid {
  width: 100%;
}
.ts_card .ts_card-bgimage {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 10px;
}
.ts_card .ts_card-bgimage:before {
  content: "";
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgb(0, 0, 0) 10%, rgba(0, 0, 0, 0) 50%);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.ts_card.ts_card-meal {
  cursor: pointer;
  background-color: var(--theme-primary-color);
  min-height: 500px;
}
.ts_card.ts_card-meal:hover {
  background-color: var(--theme-secondary-color);
}
.ts_card.ts_card-meal .ts_card-content {
  position: absolute;
  z-index: 3;
  color: #fff;
  bottom: 0;
}
.ts_card.ts_card-meal .ts_card-content h1, .ts_card.ts_card-meal .ts_card-content h2, .ts_card.ts_card-meal .ts_card-content h3, .ts_card.ts_card-meal .ts_card-content h4, .ts_card.ts_card-meal .ts_card-content h5, .ts_card.ts_card-meal .ts_card-content h6 {
  color: #fff;
}
.ts_card.ts_card-meal .ts_card-content p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.ts_card.ts_card-meal .ts_card-content a:not(.btn) {
  color: #fff;
  text-decoration: underline;
  font-weight: 300;
}
.ts_card.ts_card-meal .ts_card-content a:not(.btn):hover {
  color: var(--theme-secondary-color);
}
.ts_card.ts_card-see {
  border-radius: 10px;
  height: 150px;
  max-height: 150px;
  background-color: var(--theme-secondary-color);
}
.ts_card.ts_card-see a {
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-weight: 800;
  text-decoration: underline;
}
.ts_card .exchange_ticket_game_v2 {
  border-radius: 10px;
}
.ts_card .exchange_ticket_game_v2 .exchange_ticket_game-logo {
  left: 0;
  right: 0;
}
.ts_card .exchange_ticket_game_v2 .exchange_ticket_game-gradient {
  border-radius: 10px;
}
.ts_card .exchange_ticket_game_v2 .exchange_ticket_game-details {
  font-size: 12px;
}
.ts_card .exchange_ticket_game_v2 .exchange_ticket_game-details-day {
  font-size: 24px;
}
.ts_card .exchange_ticket_game_v2 .exchange_ticket_game-details-team {
  font-size: 18px;
}
.ts_card .exchange_ticket_game_v2 .exchange_ticket_game-flash {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 10px;
  opacity: 0.1;
  background: linear-gradient(225deg, var(--theme-secondary-color-75) 0%, var(--theme-secondary-color-50) 50%, var(--theme-secondary-color-25) 100%);
}
.ts_card.slick-slide {
  margin-right: 10px;
}
.ts_card.slick-slide .exchange_ticket_game_v2 {
  border-radius: 10px;
  height: 150px;
  max-height: 150px;
}
.ts_card.slick-slide .exchange_ticket_game_v2.selectable_gameId {
  cursor: pointer;
}
.ts_card.slick-slide .exchange_ticket_game_v2.selectable_gameId.active {
  border: 8px solid var(--primary);
}
.ts_card.slick-slide .exchange_ticket_game_v2 .exchange_ticket_game-logo {
  left: 0;
  right: 0;
}
.ts_card.slick-slide .exchange_ticket_game_v2 .exchange_ticket_game-gradient {
  border-radius: 10px;
}
.ts_card.slick-slide .exchange_ticket_game_v2 .exchange_ticket_game-details {
  font-size: 12px;
}
.ts_card.slick-slide .exchange_ticket_game_v2 .exchange_ticket_game-details-day {
  font-size: 24px;
}
.ts_card.slick-slide .exchange_ticket_game_v2 .exchange_ticket_game-details-team {
  font-size: 18px;
}
.ts_card.slick-slide .exchange_ticket_game_v2 .exchange_ticket_game-flash {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 10px;
  opacity: 0.1;
  background: linear-gradient(225deg, var(--theme-secondary-color-75) 0%, var(--theme-secondary-color-50) 50%, var(--theme-secondary-color-25) 100%);
}
.ts_card.ts_card-bite {
  min-height: 200px;
  cursor: pointer;
  background-color: var(--theme-primary-color);
}
.ts_card.ts_card-bite:hover {
  background-color: var(--theme-secondary-color);
}
.ts_card.ts_card-bite .ts_card-content {
  position: absolute;
  z-index: 3;
  color: #fff;
  bottom: 0;
}
.ts_card.ts_card-bite .ts_card-content h1, .ts_card.ts_card-bite .ts_card-content h2, .ts_card.ts_card-bite .ts_card-content h3, .ts_card.ts_card-bite .ts_card-content h4, .ts_card.ts_card-bite .ts_card-content h5, .ts_card.ts_card-bite .ts_card-content h6 {
  color: #fff;
}
.ts_card.ts_card-bite .ts_card-content p {
  color: #fff;
  font-size: 12px;
  font-weight: 100;
}
.ts_card.ts_card-bite .ts_card-content a:not(.btn) {
  color: #fff;
  text-decoration: underline;
  font-weight: 300;
}
.ts_card.ts_card-bite .ts_card-content a:not(.btn):hover {
  color: var(--theme-secondary-color);
}
.ts_card .ts_card-form {
  padding: 30px;
}
.ts_card .ts_card-form label {
  margin-top: 0;
  font-size: 1.1667em;
  padding: 10px 0px;
  color: #000;
  font-weight: 900;
}
.ts_card .ts_card-form .formbuilder-required {
  padding-left: 5px;
  color: var(--red);
}
.ts_card .ts_card-eventOverlay {
  top: 10px;
  right: 10px;
  width: 300px;
  position: absolute;
  z-index: 10;
}
.ts_card .ts_card-eventOverlay .ts_card {
  border: 6px solid #fff;
  margin-bottom: 0;
  padding-bottom: 0;
}
.ts_card .ts_card-eventOverlay .ts_card .exchange_ticket_game_v2 {
  margin-bottom: 0;
  height: 150px;
}

.ts_heading {
  margin-bottom: 20px;
}
.ts_heading h2 {
  font-weight: 800;
}
.ts_heading .subheading {
  font-weight: 100;
}

.ts_feed h5 {
  font-weight: 800;
}

.ts_events {
  margin-bottom: 20px;
}
.ts_events h5 {
  font-weight: 800;
}

.slick-list {
  padding: 0 15% 0 0 !important;
}

.font-weight-light {
  font-weight: 100;
}

.font-weight-bold {
  font-weight: 800;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.ts_main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ts_main-menu ul li {
  margin: 0;
  padding: 0;
}
.ts_main-menu ul li a {
  display: block;
  background-color: #f2f2f2;
  margin-bottom: 2px;
  padding: 10px;
  font-weight: 800;
  font-size: 14px;
}
.ts_main-menu ul li a i {
  padding-right: 10px;
}
.ts_main-menu ul li a:hover {
  text-decoration: none;
  background-color: var(--theme-primary-color);
  color: #fff;
}

.ts_event-benefit-empty {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #9c9c9c;
}

.ts_event-benefit-requests {
  font-size: 14px;
  padding: 10px;
}
.ts_event-benefit-requests .ts_event-benefit-request {
  border: 1px solid #c9c9c9;
  padding: 10px;
  margin-top: 5px;
}
.ts_event-benefit-requests .ts_event-benefit-request h5 {
  font-weight: 800;
}
.ts_event-benefit-requests .ts_card.ts_card-bite {
  min-height: 100px;
}
.ts_event-benefit-requests .ts_event-benefit-requests-cta {
  text-align: center;
  margin-top: 5px;
}

.tooltip-element {
  font-size: 12px;
  display: block;
  font-weight: 300;
}

.unselectable_gameId:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 10;
}
.unselectable_gameId .exchange_ticket_game-message {
  position: absolute;
  top: 0;
  padding: 15px;
  font-weight: 800;
  font-size: 14px;
  z-index: 11;
}

.turnstyle_seatSelection_row {
  margin-bottom: 15px;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 15px;
}
.turnstyle_seatSelection_row .turnstyle_seatSelection_row-heading {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.turnstyle_seatSelection_row .seatSelection_cart {
  padding: 10px 10px;
  background-color: #fff9d9;
  margin-top: 5px;
  border-left: 5px solid #ffef97;
  cursor: pointer;
}
.turnstyle_seatSelection_row .seatSelection_cart.active {
  background-color: #1b6bff;
  border-left: 5px solid #0147c7;
  color: #fff;
}
.turnstyle_seatSelection_row .seatSelection_cart .seatSelection_cart-row {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  margin-right: 5px;
}
.turnstyle_seatSelection_row .seatSelection_cart .seatSelection_cart-seat {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  display: inline-block;
}
.turnstyle_seatSelection_row .seatSelection_cart .seatSelection_cart-seat strong {
  font-size: 24px;
}

.seat-selection-holder {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0px -7px 18px -12px rgba(0, 0, 0, 0.64);
}

.seatSelection_cart-price {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  text-align: right;
  color: #293a8b;
}

.seatSelection_cart.active .seatSelection_cart-price {
  color: #fff;
}

.ts_buyertype_cart {
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  padding: 10px;
  font-size: 14px;
  margin-top: 10px;
  border-left: 10px solid #000;
}

.ts_buyertype_selection .modal-dialog {
  max-width: 450px;
}
.ts_buyertype_selection .modal-content {
  border-top: 8px solid var(--theme-secondary-color) !important;
  border-radius: 8px !important;
}
.ts_buyertype_selection .modal-body {
  text-align: left !important;
}
.ts_buyertype_selection .close-icon {
  top: 10px !important;
}
.ts_buyertype_selection .icon-image {
  display: none;
}
.ts_buyertype_selection .title {
  display: none;
}
.ts_buyertype_selection .subtitle {
  display: none;
}
.ts_buyertype_selection .ts_buyertype_selection-selection {
  border-top: 1px solid #c9c9c9;
  margin-top: 20px;
  padding-top: 20px;
}
.ts_buyertype_selection .ts_buyertype_selection-heading {
  font-size: 12px;
  color: #c9c9c9;
  text-transform: uppercase;
}
.ts_buyertype_selection .ts_buyertype_selection-number {
  font-weight: 800;
  font-size: 24px;
}
.ts_buyertype_selection .ts_buyertype_selection-description {
  font-weight: 800;
  font-size: 16px;
}
.ts_buyertype_selection .ts_buyertype_selection-pricing {
  font-weight: 800;
  font-size: 14px;
}
.ts_buyertype_selection .ts_buyertype_selection-pricing .small-ticket-disclaimer {
  font-weight: 300;
}
.ts_buyertype_selection .ts_buyertype_selection-type {
  padding-bottom: 10px;
  line-height: 1.2rem;
}

.turnstyle_login_heading {
  position: absolute;
  z-index: 5;
  color: #fff;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 20%;
  font-size: 72px;
  line-height: 5rem;
  font-weight: 800;
}

.no-seats {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-align: center;
  padding: 20px 0px;
  font-style: italic;
}

.shopping-cart-heading {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  padding-top: 15px;
  padding-left: 10px;
  padding-bottom: 5px;
}
.shopping-cart-heading i {
  font-size: 16px;
  padding-right: 15px;
}

.js-venue-map {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.95;
  background-color: #fff;
  z-index: 15;
}

.js-venue-map-svg {
  width: 100%;
  height: 100%;
}

.js-venue-map-close {
  position: absolute;
  font-size: 52px;
  top: 25px;
  right: 25px;
  color: #9c9c9c;
  z-index: 16;
  display: none;
}
@media only screen and (max-width: 768px) {
  .js-venue-map-close {
    font-size: 36px;
    top: 10px;
    right: 10px;
  }
}

.js-venue-map-container {
  position: absolute;
  top: 40px;
  bottom: 30px;
  left: 0;
  right: 0;
}

body {
  position: relative;
  overflow-x: hidden;
}

body,
html {
  height: 100%;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: transparent;
}

/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/
#wrapper {
  padding-left: 0;
  transition: all 0.5s ease;
}

#sidebar-wrapper {
  z-index: 2002;
  left: 0;
  width: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  transition: all 0.5s ease;
  padding: 0 !important;
  position: fixed;
  align-items: flex-start;
  box-shadow: -12px -1px 8px -8px rgba(0, 0, 0, 0.11) inset;
  -webkit-box-shadow: -12px -1px 8px -8px rgba(0, 0, 0, 0.11) inset;
  -moz-box-shadow: -12px -1px 8px -8px rgba(0, 0, 0, 0.11) inset;
}

#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}

#wrapper.toggled #sidebar-wrapper {
  width: 20%;
}
@media only screen and (max-width: 768px) {
  #wrapper.toggled #sidebar-wrapper {
    width: 95%;
  }
}

#page-content-wrapper {
  width: 100%;
  position: absolute;
  margin-left: 0;
  transition: all 0.5s ease;
}

#wrapper.toggled #page-content-wrapper {
  position: absolute;
  width: 80%;
  margin-left: 20%;
}
@media only screen and (max-width: 768px) {
  #wrapper.toggled #page-content-wrapper {
    width: 100%;
    margin-left: 0;
  }
}

/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/
.sidebar-nav li {
  position: relative;
  line-height: 25px;
  display: inline-block;
  width: 100%;
}

.sidebar-nav li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 0;
  background-color: var(--theme-primary-color);
  transition: width 0.2s ease-in;
}

.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before {
  width: 100%;
  transition: width 0.2s ease-in;
}

.sidebar-nav li a {
  display: block;
  color: var(--theme-primary-color);
  text-decoration: none;
  padding: 10px 15px 10px 30px;
}
.sidebar-nav li a i {
  font-size: 18px;
  margin-right: 10px;
}

.sidebar-nav li a:hover,
.sidebar-nav li.open a:hover {
  color: #fff;
  text-decoration: none;
  background-color: transparent;
}

.sidebar-nav .dropdown-menu {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  background-color: #222;
  box-shadow: none;
}

/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/
.ts_exchange-header {
  background-color: var(--theme-primary-color);
  color: #fff;
  padding: 5px;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.ts_exchange-header img {
  max-width: 42px;
  max-height: 42px;
  margin-left: 47px;
}
.hamburger {
  z-index: 999;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  position: absolute;
  margin-top: 5px;
  margin-left: 5px;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}

.hamburger.is-closed:before {
  content: "";
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #fff;
}

.hamburger.is-closed .hamb-top {
  top: 5px;
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}

.hamburger.is-closed .hamb-bottom {
  bottom: 5px;
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
  top: 0;
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-bottom {
  bottom: 0;
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #fff;
}

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;
}

.hamburger.is-open .hamb-top {
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
}

.hamburger.is-open .hamb-middle {
  display: none;
}

.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
}

.hamburger.is-open:before {
  content: "";
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger-mobile {
  display: none;
  position: absolute;
  right: 15px;
  top: 15px;
}
@media only screen and (max-width: 768px) {
  .hamburger-mobile {
    display: block;
  }
}

.hamburger-mobile.is-closed .hamb-top,
.hamburger-mobile.is-closed .hamb-middle,
.hamburger-mobile.is-closed .hamb-bottom {
  display: none;
}

.hamburger-mobile.is-open .hamb-top,
.hamburger-mobile.is-open .hamb-middle,
.hamburger-mobile.is-open .hamb-bottom {
  background-color: var(--theme-primary-color);
}

.ts_exchange-container {
  padding: 60px 25px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .ts_exchange-container {
    padding: 60px 15px;
  }
}
.ts_exchange-container.ts_exchange-container-full {
  max-width: 100%;
}

.ts_exchange-logo {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}

.ts_nav-memberLevel {
  margin: 25px;
  font-size: 14px;
}
.ts_nav-memberLevel select {
  font-size: 12px;
}

.ts_nav-contact {
  padding: 20px;
  font-size: 14px;
  border-radius: 8px;
  margin: 25px;
  border: 1px solid #e0e0e0;
}
.ts_nav-contact strong {
  font-weight: 800;
}
.ts_nav-contact .ts_nav-contact-disclaimer {
  font-size: 12px;
  color: #636363;
  line-height: 1.2rem;
  margin-bottom: 10px;
}
.ts_nav-contact .ts_nav-contact-name {
  font-weight: bold;
}

.ts_exchange-nav-heading {
  padding: 25px;
}

.ts_exchange-nav_account {
  padding-top: 25px;
  font-size: 14px;
  line-height: 22px;
}
.ts_exchange-nav_account span {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  display: block;
  font-size: 24px;
  padding-bottom: 8px;
}

.account_back {
  font-size: 12px;
  margin-bottom: 20px;
}

.ts_card-status {
  font-size: 11px;
  text-transform: uppercase;
  display: inline-block;
  background-color: #c9c9c9;
  color: #fff;
  border-radius: 3px;
  padding: 0 5px;
  line-height: 1.2rem;
}
.ts_card-status.ts_card-status-pending {
  background-color: var(--theme-primary-color-50);
  color: #fff;
}
.ts_card-status.ts_card-status-denied {
  background-color: var(--theme-secondary-color-50);
  color: #fff;
}
.ts_card-status.ts_card-status-confirmed {
  background-color: #1dbd03;
  color: #fff;
}

.ts_card-content .ts_card-status {
  position: absolute;
  top: 0px;
}

.ts_dashboard-container .form_container {
  padding: 10px 20px;
}
.ts_dashboard-container .form_container .form_heading {
  font-size: 14px;
}
.ts_dashboard-container .form_heading {
  font-weight: 800;
}

.ts_dashboard-accountCredit {
  font-size: 72px;
  font-weight: bold;
  line-height: 72px;
  display: inline-block;
  background-color: var(--green);
  padding: 10px;
  color: #fff;
  border-radius: 8px;
}

.ts_dashboard-section {
  border-top: 1px solid #e2e2e2;
  padding-top: 15px;
  margin-top: 15px;
}

.ts_dashboard-accountCredit-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #636363;
}

.ts_exchange-container .shopping_cart_checkout_pricing {
  font-size: 18px;
  padding: 5px 0px 15px;
}
.ts_exchange-container .shopping_cart_checkout_pricing .shopping_cart_checkout_pricing_heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
.ts_exchange-container .shopping_cart_checkout_pricing .shopping_cart_checkout_pricing_price {
  text-align: right;
}
.ts_exchange-container .shopping-popup.turnStyle_checkout-review .form_container {
  padding: 10px 20px;
}
@media only screen and (max-width: 768px) {
  .ts_exchange-container .shopping-popup.turnStyle_checkout-review .form_container {
    border: 0px;
  }
}
.ts_exchange-container .shopping-popup.turnStyle_checkout-review .form_container .form_heading {
  font-size: 14px;
}
.ts_exchange-container .form_heading {
  font-weight: 800;
}
.ts_exchange-container .turnStyle_countdownTimer {
  border-radius: 8px;
  background-color: var(--theme-primary-color);
}
.ts_exchange-container .box-content {
  border-radius: 8px;
}
.ts_exchange-container .exchange_ticket_game_v2 {
  border-radius: 8px;
}
.ts_exchange-container .exchange_seat_card {
  border-radius: 8px;
}
.ts_exchange-container .exchange_seat_card_check {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.ts_exchange-container .exchange_ticket_game-gradient {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.ts_exchange-container .form_container {
  border-radius: 8px;
}
.ts_exchange-container .ts_exchange-shoppingCart-section {
  border-top: 1px solid #e2e2e2;
  padding-top: 15px;
  margin-top: 15px;
}
.ts_exchange-container .ts_exchange-shoppingCart-section h5 {
  font-weight: 800;
  font-size: 12px;
}
.ts_exchange-container .ts_exchange-shoppingCart-section .list-box {
  border: 1px solid #c9c9c9;
  border-radius: 8px;
}
.ts_exchange-container .ts_exchange-shoppingCart-section .list-box .card_label {
  font-size: 14px;
}
.ts_exchange-container .ts_exchange-shoppingCart-section .list-box .card_title {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .ts_exchange-container .ts_exchange-shoppingCart-button {
    position: fixed;
    background-color: #fff;
    border-top: 1px solid #9c9c9c;
    left: 0;
    right: 0;
    padding: 10px;
    box-shadow: 0px -9px 20px -10px rgba(0, 0, 0, 0.63);
    bottom: 0;
  }
}
.ts_exchange-container .shopping_cart_largeClose {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 36px;
  color: #9c9c9c;
}
.ts_exchange-container .shopping-popup {
  position: relative;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .ts_exchange-container .shopping-popup {
    margin-top: 0;
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    padding-bottom: 90px;
  }
}

.ts_exchange-header .shopping_cart_open {
  color: #fff;
  font-size: 24px;
  margin-right: 10px;
}

.ts_exchange-sticky {
  position: sticky;
  top: 60px;
}

.ts_exchange-ticket {
  position: relative;
  border: 1px solid #c9c9c9;
  padding: 10px 0;
  font-size: 13px;
  text-align: center;
}
.ts_exchange-ticket strong {
  font-size: 11px;
  text-transform: uppercase;
  color: #9c9c9c;
  display: block;
  padding-bottom: 2px;
}
.ts_exchange-ticket:before, .ts_exchange-ticket:after {
  height: 90px;
  width: 45px;
  content: "";
  position: absolute;
  top: 0.9em;
  top: calc(0.9em - 1px);
  height: 1.2em;
  width: 0.6em;
  border: 1px solid #c9c9c9;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ts_exchange-ticket:before {
  left: -1px;
  border-radius: 0 1em 1em 0;
  border-left-color: #fff;
}
.ts_exchange-ticket:after {
  right: -1px;
  border-radius: 1em 0 0 1em;
  border-right-color: #fff;
}

.ts_exchange-tickets {
  border-top: 1px dashed #c9c9c9;
  margin-top: 10px;
  padding-top: 10px;
}
.ts_exchange-tickets .ts_exchange-tickets-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #9c9c9c;
  display: block;
  padding-bottom: 2px;
}
.ts_exchange-tickets .ts_exchange-tickets-info {
  font-size: 13px;
  margin-bottom: 5px;
  line-height: 1.3rem;
}

.js-venue-map-container .popover-header {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  background-color: var(--theme-primary-color);
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
.js-venue-map-container .popover-body {
  min-width: 200px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.js-venue-map-container .popover-body strong {
  font-size: 12px;
  text-transform: uppercase;
}

.ts_exchange-shoppingCart-details {
  margin: 10px;
  position: relative;
}
.ts_exchange-shoppingCart-details .ts_exchange-shoppingCart-details-item {
  padding: 20px 10px;
  border-bottom: 2px solid #c9c9c9;
}
.ts_exchange-shoppingCart-details .ts_exchange-shoppingCart-details-heading {
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  text-align: center;
}
.ts_exchange-shoppingCart-details .ts_exchange-shoppingCart-details-emptyGame {
  border: 3px dotted #c9c9c9;
  border-radius: 8px;
  padding: 5px;
  width: 100px;
  height: 100px;
  text-align: center;
  margin: auto;
  padding-top: 35px;
  color: #c9c9c9;
  font-size: 72px;
  font-weight: 100;
}
.ts_exchange-shoppingCart-details .ts_exchange-shoppingCart-details-edit {
  text-align: center;
  font-size: 12px;
}
.ts_exchange-shoppingCart-details .ts_exchange-shoppingCart-details-arrow {
  font-size: 36px;
  color: #c9c9c9;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 25px;
}
.ts_exchange-shoppingCart-details .ts_exchange-shoppingCart-details-logo {
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}
.ts_exchange-shoppingCart-details .ts_exchange-shoppingCart-details-teamName {
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  padding-top: 5px;
}
.ts_exchange-shoppingCart-details .ts_exchange-shoppingCart-details-date {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.ts_exchange-seats {
  display: none;
  max-height: 55vh;
  overflow: scroll;
  margin-top: 20px;
  padding: 10px 20px;
}
.ts_exchange-seats .form_heading {
  font-size: 14px;
}
.ts_exchange-seats .shoppingCart_open_seats_list {
  padding: 0px;
}
@media only screen and (max-width: 767px) {
  .ts_exchange-seats {
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 0px;
  }
}

.seating_chart {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .ts_exchange-container .account_heading {
    margin: 10px 0;
  }
}

@media only screen and (max-width: 767px) {
  .ts_exchange-layer-1 {
    z-index: 2002;
  }
}

@media only screen and (max-width: 767px) {
  .ts_exchange-layer-2 {
    z-index: 2001;
  }
}

@media only screen and (max-width: 767px) {
  .ts_exchange-layer-3 {
    z-index: 2000;
  }
}

.ts_exchange-login {
  height: 100%;
}
.ts_exchange-login .ts_exchange-login-holder {
  background-color: #fff;
  margin: 0;
  border-radius: 8px;
  min-height: 100%;
}
@media screen and (min-width: 768px) {
  .ts_exchange-login .ts_exchange-login-holder {
    margin: 5% 10%;
    border: 2px solid #e9e9e9;
    min-height: unset;
  }
}
.ts_exchange-login .ts_exchange-login-row {
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .ts_exchange-login .ts_exchange-login-row {
    height: 85vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .ts_exchange-login .ts_exchange-login-row {
    display: grid;
    grid: 100%/400px 1fr;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .ts_exchange-login .ts_exchange-login-row:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .ts_exchange-login .ts_exchange-login-row > div:first-child {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}
.ts_exchange-login .turnstyle_login_cta {
  width: 100%;
}
@media screen and (min-width: 601px) {
  .ts_exchange-login .turnstyle_login_cta {
    width: 400px;
  }
}
.ts_exchange-login .ts_exchange-login-background {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
}
.ts_exchange-login .turnStyle_OKTA_login {
  position: relative;
  background-color: #fff;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
}
.ts_exchange-login .turnStyle_OKTA_login #okta-sign-in.auth-container.main-container {
  position: relative;
  border-bottom-left-radius: 8px;
  width: 75%;
  border: 0px;
  padding-bottom: 20px;
}

.ts_corporate_pass .ts_corporate_pass-logo {
  text-align: center;
  margin-top: 60px;
}
.ts_corporate_pass .ts_corporate_pass-logo img {
  height: 100px;
}
.ts_corporate_pass .ts_exchange-login-holder {
  margin-top: 25px;
}
.ts_corporate_pass .ts_corporate_pass-offers {
  text-align: center;
}
.ts_corporate_pass .ts_corporate_pass-offers h2 {
  font-weight: 600;
  font-size: 36px;
}
.ts_corporate_pass .ts_corporate_pass-offers-redemption {
  padding: 50px 20px;
}
.ts_corporate_pass .ts_corporate_pass-offers-redemption-logo {
  padding-bottom: 30px;
}
.ts_corporate_pass .ts_corporate_pass-offers-redemption-form {
  padding: 20px 0;
}
.ts_corporate_pass .ts_corporate_pass-offers-redemption-link {
  padding-top: 30px;
  font-size: 14px;
}
.ts_corporate_pass .ts_corporate_pass-offers-redemption-checkout {
  border: 1px solid #e9e9e9;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin: 30px;
  color: #000;
}

/* The .image-container class needs to be applied to a div wrapped around the image you want to apply this filter to */
/* The .image-container class needs to be applied to a div wrapped around the image you want to apply this filter to */
.image-container:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: lighten;
  background: #6be9ff;
  opacity: 0.23;
}

.modal-backdrop {
  z-index: 2004;
}

.modal {
  z-index: 2005;
}

.ts_dashboard-card {
  border: 1px solid #c7c7c7;
  padding: 10px 20px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
}
.ts_dashboard-card .ts_dashboard-card-icon {
  color: var(--theme-primary-color);
  font-size: 72px;
}
.ts_dashboard-card .ts_dashboard-card-heading {
  text-transform: uppercase;
  font-size: 12px;
  color: var(--theme-primary-color-50);
  margin-bottom: 5px;
}
.ts_dashboard-card .ts_dashboard-card-number {
  font-size: 60px;
  line-height: 60px;
}

.ts_dashboard-chart {
  width: 100%;
}

.ts_dashboard-numbers {
  text-transform: uppercase;
  font-size: 12px;
  color: #636363;
  font-weight: bold;
}
.ts_dashboard-numbers span {
  display: block;
  font-size: 18px;
  text-transform: none;
  color: #000;
  font-weight: 800;
}

@media only screen and (max-width: 767px) {
  .ts_is-checkout {
    position: relative !important;
    display: block !important;
    z-index: 1 !important;
  }
}

.ts_card-upcomingBenefit {
  padding: 10px;
  border: 1px solid #e2e2e2;
  cursor: pointer;
}
.ts_card-upcomingBenefit .ts_card-upcomingBenefit-team {
  text-transform: uppercase;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}
.ts_card-upcomingBenefit .ts_card-upcomingBenefit-benefit {
  font-size: 14px;
  font-weight: 800;
}
.ts_card-upcomingBenefit .exchange_ticket_game-details-day {
  font-size: 36px;
  padding: 5px 0;
}
.ts_card-upcomingBenefit .exchange_ticket_game-details-date {
  text-align: center;
  border-right: 1px solid #e2e2e2;
  font-size: 12px;
}
.ts_card-upcomingBenefit .exchange_ticket_game-details-team {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.exchange_ticket_ticket-no-results {
  font-size: 14px;
  color: #727272;
  margin: 30px;
}

.ts_exchange-shoppingCart-details-card {
  border: 3px solid #c9c9c9;
  border-radius: 8px;
  padding: 10px;
  max-height: 300px;
  overflow: scroll;
}

.display-us {
  display: none;
}
.is-us-address .display-us {
  display: block;
}

.display-ca {
  display: none;
}
.is-ca-address .display-ca {
  display: block;
}

.exchange_ticket_order__content {
  padding: 20px;
  cursor: default;
}

.exchange_ticket_order__heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 40px;
  padding: 10px 0;
  border-top: dashed 2px #e4e4e5;
  border-bottom: dashed 2px #e4e4e5;
}
.exchange_ticket_order__heading:first-of-type {
  margin-top: 20px;
}

.exchange_ticket_order__table {
  display: grid;
  grid: auto/auto auto auto auto auto;
  justify-content: flex-start;
  margin-top: 12px;
  font-size: 14px;
}
.exchange_ticket_order__table.is-parking {
  grid: auto/auto auto;
}
.exchange_ticket_order__table p {
  margin: 0;
  padding: 0;
}

.exchange_ticket_order__row {
  padding: 6px 30px 6px 6px;
  padding-right: 30px;
  position: relative;
}
.exchange_ticket_order__table:has(.is-disabled) .exchange_ticket_order__row {
  color: #b2b2b4;
}
.exchange_ticket_order__row:has(.exchange_ticket_order__checkbox-selector.active) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(1):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(2) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(1):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(3) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(1):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(4) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(3):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(4) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(3):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(5) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(3):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(6) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(5):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(6) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(5):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(7) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(5):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(8) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(7):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(8) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(7):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(9) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(7):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(10) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(9):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(10) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(9):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(11) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(9):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(12) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(11):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(12) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(11):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(13) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(11):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(14) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(13):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(14) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(13):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(15) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(13):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(16) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(15):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(16) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(15):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(17) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(15):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(18) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(17):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(18) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(17):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(19) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(17):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(20) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(19):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(20) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(19):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(21) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(19):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(22) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(21):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(22) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(21):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(23) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(21):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(24) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(23):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(24) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(23):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(25) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(23):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(26) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(25):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(26) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(25):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(27) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row:nth-of-type(25):has(.exchange_ticket_order__checkbox-selector.active) ~ .exchange_ticket_order__row:nth-of-type(28) {
  background: var(--theme-secondary-color);
  color: #fff;
}

.exchange_ticket_order__row--center {
  text-align: center;
}

.exchange_ticket_order__row--checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
.exchange_seat_card{
    background-color: $medGrey;
    border:1px solid $medGrey;
    margin-right:15px;
    //border-radius: 5px;
    display:inline-block;
    width:130px;
    text-align:center;
    font-size:12px;
    line-height:1.2rem;
    margin-top:20px;
    font-family: $fontFamilyOswaldRegular;
    font-weight:300;

    &.is-disabled{
        opacity:.3;
    }

    &.exchange_seat_card-parking{
        background-color: #c1fff6;
    }

    &.active{
        background-color: var(--theme-secondary-color);
        color:#fff;

        .exchange_seat_card_check{
            color:#000;
        }
    }

    .exchange_seat_card_section{
        padding:5px 10px 0px;
    }

    .exchange_seat_card_seat{
        font-size:20px;
        font-weight:800;
        font-family: $fontFamilyOswaldBold;
        padding:0px 0px 10px 0px;
    }

    .exchange_seat_card_check{
        padding:15px;
        font-size:24px;
        background-color:#fff;
    }

    input{
        display:none;
    }

    .fa-check-square-o{
        display:none;
    }

    .fa-square-o{
        display:block;
    }

    &.active{
        .fa-check-square-o{
            display:block;
        }

        .fa-square-o{
            display:none;
        }
    }
}
*/
.exchange_ticket_order__checkbox-selector {
  background-color: transparent;
  color: #fff;
  border: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}
.exchange_ticket_order__checkbox-selector input {
  display: none;
}

.exchange_ticket_order__checkbox-container {
  background-color: transparent;
  color: #fff;
  border: 0;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: unset;
  text-align: center;
  font-size: 12px;
  line-height: 1.2rem;
  margin-top: 0;
  height: 100%;
}

.exchange_ticket_order__checkbox {
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid #000;
  border-radius: 4px;
  color: white;
  margin: 0 auto;
}
.exchange_ticket_order__table:has(.is-disabled) .exchange_ticket_order__checkbox {
  background: white;
  border-color: #c9c9c9;
  color: white;
}
.exchange_ticket_order__checkbox-selector.active + .exchange_ticket_order__checkbox-container .exchange_ticket_order__checkbox {
  background: white;
  color: #000;
}
.exchange_ticket_order__checkbox svg {
  height: 12px;
  width: 12px;
  display: block;
  fill: currentColor;
}