html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #4d4d4d;
  background: #e9ecef url('./real/page-bg.jpg') center top / auto no-repeat fixed;
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

.page-shell {
  width: 100%;
  min-width: 1110px;
  overflow-x: hidden;
}

.page-center {
  width: 1110px;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
}

.topline {
  background: #343434;
  color: #fff;
  height: fit-content;
  font-size: 11px;
}

.topline-inner {
  width: 1110px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0;
}

.topline-links,
.topline-actions {
  display: flex;
  align-items: center;
  gap: 0;
}

.topline-actions {
  position: relative;
}

.topline-links a,
.topline-actions a {
  padding: 0 5px;
  line-height: 25px;
}

.search-mini {
  display: flex;
  align-items: center;
  gap: 2px;
}

.search-mini input {
  width: 200px;
  height: 18px;
  border: 0;
  background: #ccc;
  border-radius: 2px;
  padding: 0 22px 0 10px;
  box-sizing: border-box;
}

.search-mini button {
  height: 16px;
  width: 18px;
  border: 1px solid #8c8c8c;
  background: #d9d9d9 url('./real/search-icon.png') center center / 9px 9px no-repeat;
  color: #fff;
  font-size: 9px;
  padding: 0;
}

.topline-social {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3b5998;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.srch_ip {
  display: flex;
  align-items: center;
  gap: 2px;
}

.advanced {
  font-size: 9px;
  color: #8bb640;
  cursor: pointer;
  padding: 0 5px;
}

.login-btn.red_btn.btn_desk {
  background: linear-gradient(180deg, #f86d61, #df554b);
  color: #fff;
  border: 1px solid #d34e45;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0;
  text-decoration: none;
  line-height: 18px;
}

.login_form {
  position: absolute;
  top: 25px;
  right: 60px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 100;
  width: 250px;
  border-radius: 3px;
}

.login_form .tab {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.login_form .tablinks {
  flex: 1;
  padding: 8px 0;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

.login_form .tablinks.active {
  background: #fff;
  color: #333;
  border-bottom: 2px solid #629d34;
}

.login_form .tabcontent {
  padding: 10px;
}

.login_form .tabcontent form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.login_form .tabcontent input[type="email"],
.login_form .tabcontent input[type="password"],
.login_form .tabcontent input[type="text"] {
  width: 100%;
  height: 30px;
  border: 1px solid #d7d7d7;
  padding: 0 8px;
  font-size: 12px;
  border-radius: 3px;
  box-sizing: border-box;
}

.login_form .tabcontent input[type="submit"] {
  background: #629d34;
  color: #fff;
  border: none;
  height: 30px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
}

.login_option {
  font-size: 11px;
  color: #629d34;
  cursor: pointer;
  display: block;
  margin-top: 6px;
}

.dropdown {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.dropdown dt {
  margin: 0;
}

.dropdown dt a {
  display: flex;
  align-items: center;
  padding: 0 5px;
  cursor: pointer;
  color: #fff;
  font-size: 11px;
  line-height: 25px;
}

.dropdown .arrow_ad {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown .arrow_ad::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #aaa;
}

.dropdown dd {
  margin: 0;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
}

.dropdown dd ul {
  background: #fff;
  border: 1px solid #ccc;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 100px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.dropdown dd ul li {
  padding: 0;
}

.dropdown dd ul li a {
  display: block;
  padding: 6px 12px;
  color: #333;
  font-size: 11px;
  white-space: nowrap;
}

.dropdown dd ul li a:hover {
  background: #f5f5f5;
}

.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin-right: 10px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.mob_menu_main {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(0,0,0,0.3);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.mob_menu_main.open {
  display: block !important;
  transform: translateX(0);
}

.mob_menu_main .cross_icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.mob_menu_main .cross_icon span {
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  position: absolute;
  top: 9px;
}

.mob_menu_main .cross_icon span:first-child {
  transform: rotate(45deg);
}

.mob_menu_main .cross_icon span:last-child {
  transform: rotate(-45deg);
}

.mob_menu_site_logo {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.mob_menu_site_logo img {
  max-width: 160px;
  height: auto;
}

.mob_top_menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mob_top_menu li {
  border-bottom: 1px solid #eee;
}

.mob_top_menu li a {
  display: block;
  padding: 12px 15px;
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.header {
  background: transparent;
}

.header-inner {
  width: 1110px;
  margin: 0 auto;
  display: table;
  padding: 0;
  padding-top: 10px;
  position: relative;
}

.logo {
  display: table-cell;
  vertical-align: bottom;
  padding-bottom: 10px;
}

.logo-mark {
  position: relative;
  width: 174px;
}

.site-logo-image {
  display: block;
  width: 174px;
  height: auto;
}

.logo-title {
  color: #3d8b47;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.95px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.logo-title span {
  color: #6a6a6a;
}

.logo-subtitle {
  margin-top: 4px;
  color: #86b74f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.1px;
}

.logo-ball {
  position: absolute;
  top: -4px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0, #d8ece1 35%, #72a85f 76%, #477a3d 100%);
  border: 2px solid #edf7ef;
}

.logo-ball::before,
.logo-ball::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.78);
}

.logo-ball::before {
  left: 3px;
  right: 3px;
  top: 9px;
  height: 2px;
}

.logo-ball::after {
  top: 3px;
  bottom: 3px;
  left: 9px;
  width: 2px;
}

.header-nav {
  display: table-cell;
  vertical-align: bottom;
  text-align: right;
}

.header-nav a {
  display: inline-block;
  padding: 0 6px;
  padding-bottom: 15px;
  color: #313131;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.header-nav a:last-child {
  padding-right: 0;
}

.header-nav a:hover {
  color: #206d35;
}

.notice-bar {
  width: 1110px;
  margin: 0 auto;
  padding: 7px 0;
  border-top: 1px solid #4d8a3a;
  text-align: center;
  background-color: #0E8D93;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 25px;
}

.content {
  width: 1110px;
  margin: 0 auto;
  padding-bottom: 8px;
}

.breadcrumbs {
  padding: 2px 10px;
  width: fit-content;
  font-size: 11px;
  color: #434343;
  text-transform: capitalize;
}

.breadcrumbs a {
  color: #646464;
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 5px;
  font-size: 12px;
}

.match-hero {
  position: relative;
  overflow: hidden;
  height: 326px;
}

.hero-sponsor {
  position: absolute;
  top: 12px;
  right: 12px;
}

.hero-sponsor img {
  width: 60px;
  height: auto;
}

.banner-slider {
  width: 100%;
  line-height: 0;
}

.banner-slider img {
  width: 100%;
  height: 326px;
  object-fit: cover;
  display: block;
}

.banner_form {
  position: absolute;
  top: 15px;
  left: 20px;
  width: auto;
  background: rgba(0, 0, 0, 0.75);
  padding: 15px 0;
}

.banner_form .logos {
  background: transparent;
  padding: 0;
}

.banner_form .logos h1 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 0 10px 5px;
  text-align: center;
  margin: 0;
}

.banner_team_date {
  display: flex;
  width: 100%;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  height: fit-content;
  margin-top: 5px;
}

.banner_team_date img {
  display: inline-block;
  vertical-align: middle;
  max-width: 70px;
  height: 70px;
  width: 75px;
  object-fit: contain;
  object-position: center;
  background-color: #fff;
  padding: 3px 5px;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  margin-left: 5px;
}

.banner_event_date {
  color: black;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.49);
  border-radius: 10px;
  width: 70px;
  text-align: center;
  line-height: 1;
}

.banner_event_date span {
  width: 100%;
  margin: 0;
}

.banner_event_date .banner_month {
  padding: 4px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #DC1F26;
  color: white;
  font-size: 15px;
}

.banner_event_date .banner_day {
  font-size: 26px;
  padding: 1px 0;
}

.banner_event_date .banner_year {
  font-size: 15px;
  padding-bottom: 3px;
}

.social_media_buttons {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: stretch;
  margin: 5px;
  margin-top: 10px;
  padding: 3px 0;
  position: absolute;
  bottom: 0;
  right: 0;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.49));
}

.share_btn {
  margin-left: 5px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.share_btn a {
  color: #fff;
  text-decoration: none;
}

.share_btn.facebook-share {
  background: #3b5998;
}

.whatsapp_share_button {
  background: #25d366 !important;
}

.date_banner {
  position: absolute;
  top: 15px;
  width: 60%;
  font-size: 18px;
  text-align: left;
  right: 0;
}

.date_banner .date_banner_date {
  padding: 13px 10px;
  background-color: rgba(0,0,0,0.5);
  color: white;
}

.date_banner .date_banner_venue {
  padding: 13px 10px;
  background-color: rgba(255,255,255,0.75);
}

.date_banner .break {
  padding: 0 5px;
}

.filters {
  margin-top: 0;
  border: 1px solid #d2d2d2;
  background: #f5f5f5;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
}

.filter-grid > .stnd_range {
  flex: 1 1 180px;
  min-width: 0;
}

.exchange_price_range {
  position: relative;
}

.event_page_title_filter {
  display: block;
  margin-bottom: 4px;
  color: #868686;
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
}

.event_page_filter {
  width: 100%;
  height: 28px;
  border: 1px solid #a8a8a8;
  background: #fff;
  color: #545454;
  font-size: 11px;
  padding: 0 5px;
  border-radius: 2px;
  font-family: Arial, Helvetica, sans-serif;
  appearance: auto;
  -webkit-appearance: menulist;
}

.event_page_filter_qty_group {
  display: flex;
  border: 1px solid #a8a8a8;
  border-radius: 2px;
  overflow: hidden;
}

.event_page_filter_qty {
  flex: 1;
  height: 28px;
  border: none;
  border-right: 1px solid #d4d4d4;
  background: #fff;
  color: #545454;
  font-size: 11px;
  cursor: pointer;
  padding: 0 6px;
  font-family: Arial, Helvetica, sans-serif;
}

.event_page_filter_qty.last_option {
  border-right: none;
}

.event_page_filter_qty.active {
  background: #629d34;
  color: #fff;
  font-weight: bold;
}

.event_page_filter_qty:hover:not(.active) {
  background: #e8e8e8;
}

.ticket-row select {
  width: 100%;
  height: 21px;
  border: 1px solid #a8a8a8;
  background: #fff;
  color: #545454;
  font-size: 9px;
  padding: 0 3px;
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  font-family: Arial, Helvetica, sans-serif;
}

.price-range-btn {
  width: 100%;
  height: 21px;
  border: 1px solid #a8a8a8;
  background: #fff;
  color: #545454;
  font-size: 9px;
  padding: 0 18px 0 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  cursor: pointer;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.price-range-btn::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #6f6f6f;
}

.price-range-icon {
  width: 10px;
  height: 10px;
  border-radius: 0;
  background:
    linear-gradient(180deg, #bfbfbf, #9f9f9f);
  position: relative;
  flex: 0 0 auto;
}

.price-range-icon::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.price-range-text {
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-range-panel {
  position: absolute;
  left: -1px;
  top: calc(100% + 7px);
  width: 245px;
  border: 1px solid #d3d3d3;
  background: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.14);
  padding: 10px 12px 12px;
  z-index: 20;
}

.price-range-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}

.price-range-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.price-range-inputs label {
  display: grid;
  gap: 4px;
  color: #767676;
  font-size: 10px;
}

.price-range-inputs input {
  width: 100%;
  height: 24px;
  border: 1px solid #cecece;
  padding: 0 6px;
  font-size: 11px;
  color: #5e5e5e;
  background: #fff;
}

.price-range-close,
.price-range-reset,
.price-range-apply {
  border: 1px solid #cfcfcf;
  background: linear-gradient(180deg, #ffffff, #f0f0f0);
  color: #666;
  cursor: pointer;
}

.price-range-close {
  width: 19px;
  height: 19px;
  line-height: 16px;
  font-size: 15px;
}

.price-range-slider {
  position: relative;
  height: 28px;
  margin-bottom: 8px;
}

.price-range-track,
.price-range-fill {
  position: absolute;
  top: 12px;
  height: 4px;
  border-radius: 999px;
}

.price-range-track {
  left: 0;
  right: 0;
  background: #d7d7d7;
}

.price-range-fill {
  left: 18px;
  right: 22px;
  background: #86b533;
}

.price-range-thumb {
  position: absolute;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #7ea52f;
  background: linear-gradient(180deg, #9aca43, #79ab21);
}

.price-range-thumb.min {
  left: 12px;
}

.price-range-thumb.max {
  right: 16px;
}

.price-range-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6f6f6f;
  font-size: 10px;
  margin-bottom: 10px;
}

.price-range-note {
  color: #8a8a8a;
  font-size: 10px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.price-range-actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.price-range-reset,
.price-range-apply {
  min-width: 68px;
  height: 24px;
  font-size: 11px;
}

.price-range-apply {
  background: linear-gradient(180deg, #8dd24a, #6aaa1f);
  border-color: #76a72a;
  color: #fff;
}

.page-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
  padding: 0 5px;
  margin: 0;
  background: linear-gradient(180deg, #ffffff, #f2f2f2);
  border-left: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.page-switch button {
  min-width: 17px;
  padding: 0;
}

.page-switch .page-switch-wide {
  width: auto;
  min-width: 54px;
  padding: 0 6px;
}

.page-switch button,
.page-switch span {
  width: 17px;
  height: 17px;
  border: 1px solid #bdbdbd;
  background: linear-gradient(180deg, #ffffff, #ececec);
  color: #7a7a7a;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.page-switch button.active {
  background: linear-gradient(180deg, #98c94a, #74a923);
  color: #fff;
  border-color: #6b9525;
}

.tiny-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #737373;
  padding: 0 7px;
  margin: 0;
  background: linear-gradient(180deg, #ffffff, #f2f2f2);
  border-left: 1px solid #d4d4d4;
  font-size: 9px;
  min-width: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.toggle-track {
  width: 24px;
  height: 12px;
  border-radius: 0;
  background: linear-gradient(180deg, #8a8a8a, #686868);
  border: 1px solid #777;
  position: relative;
}

.toggle-track::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: linear-gradient(180deg, #ffffff, #dddddd);
  border-left: 1px solid #8c8c8c;
}

.red-btn {
  width: 74px;
  height: 27px;
  border: 1px solid #d34e45;
  background: linear-gradient(180deg, #f86d61, #df554b);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  align-self: center;
  justify-self: center;
  white-space: nowrap;
  border-radius: 0;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.event-layout {
  margin-top: 0;
  display: flex;
  gap: 14px;
}

.left-ticket-column {
  width: 838px;
  min-width: 0;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 300;
  line-height: 14px;
}

.business-sidebar {
  width: 258px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 10px;
  align-self: flex-start;
}

.sidebar-card {
  border: 1px solid #e0e0e0;
  background: #fff;
}

.sidebar-card-title {
  background: #0e8d93;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
}

.sidebar-card-body {
  padding: 10px;
  font-size: 11px;
  color: #4d4d4d;
  line-height: 1.5;
}

.sidebar-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-contact-row:last-child {
  border-bottom: none;
}

.sidebar-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.sidebar-contact-row strong {
  display: block;
  font-size: 11px;
  color: #333;
}

.sidebar-contact-row span {
  font-size: 10px;
  color: #777;
}

.sidebar-contact-row a {
  color: #0e8d93;
  text-decoration: none;
}

.sidebar-benefits {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: none;
}

.sidebar-benefits li {
  padding: 4px 0;
  font-size: 11px;
  color: #4d4d4d;
  position: relative;
  padding-left: 4px;
}

.sidebar-benefits li::before {
  content: '\2713';
  color: #0e8d93;
  font-weight: 700;
  position: absolute;
  left: -16px;
}

.sidebar-trustpilot {
  text-align: center;
  padding: 12px 10px;
}

.sidebar-tp-label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  display: block;
  margin-bottom: 4px;
}

.sidebar-tp-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.sidebar-tp-stars .star-box {
  background: #00b67a;
  color: #fff;
  font-size: 14px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-tp-count {
  font-size: 10px;
  color: #777;
}

.sidebar-badges {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.sidebar-badge {
  background: #0e8d93;
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: 700;
}

.business-layout {
  margin-top: 4px;
  width: 100%;
}

.business-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.middle-ticket-head {
  margin-top: 0;
  height: 24px;
  border: 0;
  background: #0E8D93;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  filter: drop-shadow(0px 3px 4px #909090);
  position: relative;
  z-index: 3;
}

.middle-ticket-main {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
  color: #fff;
  width: 100%;
}

.middle-ticket-teams {
  display: flex;
  align-items: center;
}

.middle-ticket-teams img {
  height: 20px;
  width: auto;
  position: relative;
  padding-left: 10px;
}

.middle-ticket-vs {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
}

.middle-ticket-title {
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.middle-group-action {
  border: 0;
  background: transparent;
  padding: 0;
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -14px;
  cursor: pointer;
}

.middle-group-btn {
  display: block;
  height: 26px;
  width: auto;
}

.main-section {
  padding: 0;
  padding-top: 10px;
  overflow: hidden;
}

.map-panel,
.list-panel,
.info-panel,
.tags-panel,
.partner-panel {
  border: 1px solid #d7d7d7;
  background: #fff;
}

.map-panel {
  float: left;
  width: 49.8%;
  position: sticky;
  top: 45px;
  z-index: 5;
  box-shadow: 0 0 10px -2px rgba(87,87,87,0.57);
  background: #fff;
  border: 0;
}

.stadium_view {
  margin: 0;
  width: 100%;
}

.stadium_view.with-borderd {
  box-shadow: 0 0 10px -2px rgba(87,87,87,0.57);
  border: 1px solid #d7d7d7;
  padding: 10px 5px;
  margin: 0;
  width: 100%;
}

.stadium_view .view {
  overflow: hidden;
  cursor: grab;
  position: relative;
}

.stadium_view .view.grabbing {
  cursor: grabbing;
}

.stadium_view .view img {
  max-width: 100%;
  object-fit: contain;
  display: block;
  transform-origin: center center;
  transition: transform 0.2s ease;
}

.stnd_range.exchange_search_div {
  background: #fff;
  width: 96%;
  margin: 0 auto;
}

.stnd_range .range-input {
  padding: 5px 2px 10px 2px;
}

.exchange_search .count_100 .srch_cup {
  width: 100%;
}

#zone_block_filter .srch_cup {
  display: flex;
  gap: 20px;
  height: 25px;
  position: relative;
}

.filter-line {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}

#zone_block_filter label {
  font-size: 14px;
  cursor: pointer;
}

#zone_block_filter input[type="radio"] {
  cursor: pointer;
}

#zone_block_filter .filter-btn {
  position: absolute;
  right: 0;
  display: none;
}

.open_ticket_filter,
.show_map_button,
.hide_map_button {
  height: 25px;
  width: 60px;
  background: #629d34;
  color: #fff;
  font-weight: bolder;
  cursor: pointer;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 3px;
  font-size: 11px;
}

.show_hide_map_div {
  position: absolute;
  left: 0;
  right: unset;
  display: none;
}

.show_map_button {
  display: none;
}

.show_hide_map_div.hidden_map .hide_map_button {
  display: none;
}

.show_hide_map_div.hidden_map .show_map_button {
  display: flex;
}

.plus_minus {
  float: right;
  padding: 4px;
}

.reset_button_look {
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  outline: none;
}

.plus_minus .btn {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d7d7d7;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.plus_minus .btn:hover {
  background: #f0f0f0;
}

.list-panel {
  float: right;
  width: 49.8%;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 10px -2px rgba(87,87,87,0.57);
  border: 1px solid #d7d7d7;
}

.ticket-tabs-bar {
  display: flex;
  align-items: flex-end;
  gap: 0;
  position: relative;
  top: 2px;
  padding: 0;
}

.ticket-tab {
  display: inline-block;
  height: 30px;
  border-top: 1px solid #d7d7d7;
  border-left: 1px solid #d7d7d7;
  border-right: 1px solid #d7d7d7;
  background: #d7d7d7;
  color: #444;
  font-size: 12px;
  box-shadow: 0 -1px 10px -2px rgba(87,87,87,0.57);
  cursor: pointer;
  z-index: 0;
  white-space: nowrap;
}

.ticket-tab:hover {
  background: #e5e5e5;
}

.ticket-tab.active {
  background: #f0f0f0;
  color: #000;
  font-weight: 700;
  position: relative;
  z-index: 4;
  box-shadow: 0 -5px 10px -2px rgba(87,87,87,0.57);
}

.tab-highlight {
  font-weight: 700;
  color: darkgreen;
}

.ticket-tab a {
  display: inline-block;
  padding: 5px 2px 5px 10px;
  height: 100%;
  color: #444;
  text-decoration: none;
}

.ticket-tab a + a {
  padding: 5px 10px 5px 5px;
}

.ticket-tab.active a {
  color: #000;
  font-weight: 700;
}

.ticket-tab .extra_info_icon {
  width: 14px;
  height: auto;
  vertical-align: middle;
}

.list-header {
  height: 17px;
  line-height: 16px;
  background: #f6f5f5;
  display: grid;
  grid-template-columns: minmax(0,39%) minmax(0,6%) minmax(0,6%) minmax(0,6%) minmax(0,8%) minmax(0,20%) minmax(0,15%);
  align-items: center;
  padding: 0 10px;
  color: #878787;
  font-size: 10px;
  font-weight: normal;
  margin-bottom: 5px;
}

.list-header div {
  text-align: center;
}

.list-header div:first-child {
  text-align: left;
}

.list-header div:last-child {
  text-align: center;
}

.ticket-list-legacy {
  overflow-y: scroll;
  height: 410px;
  position: relative;
  scrollbar-gutter: stable;
  scrollbar-color: #8f8f8f #f4f4f4;
  scrollbar-width: auto;
  border-top: 1px solid #efefef;
}

.ticket-list-legacy::-webkit-scrollbar {
  width: 16px;
}

.ticket-list-legacy::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #f7f7f7, #ededed);
  border-left: 1px solid #d6d6d6;
}

.ticket-list-legacy::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #9a9a9a, #818181);
  border: 3px solid #f1f1f1;
  border-radius: 10px;
}

.ticket-list-legacy::-webkit-scrollbar-button:single-button {
  display: block;
  height: 14px;
  background: linear-gradient(180deg, #f8f8f8, #e8e8e8);
  border-left: 1px solid #d6d6d6;
}

.ticket-list-legacy::-webkit-scrollbar-button:single-button:vertical:decrement {
  border-bottom: 1px solid #d6d6d6;
}

.ticket-list-legacy::-webkit-scrollbar-button:single-button:vertical:increment {
  border-top: 1px solid #d6d6d6;
}

.ticket-row {
  display: grid;
  grid-template-columns: minmax(0,39%) minmax(0,6%) minmax(0,6%) minmax(0,6%) minmax(0,8%) minmax(0,20%) minmax(0,15%);
  align-items: center;
  min-height: 52px;
  padding: 4px 5px;
  margin-bottom: 3px;
  margin-left: 5px;
  margin-right: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: #d1dce5 #d1dce5 #d1dce5 transparent;
  border-radius: 6px;
  color: #838383;
  background: #fff;
  transition: background-color 0.2s ease 0s;
  box-shadow: 0 6px 10px rgba(0,0,0,0.08), 0 0 6px rgba(0,0,0,0.05);
}

.ticket-row:first-child {
  background: linear-gradient(180deg, rgba(248, 248, 248, 0.95), rgba(255, 255, 255, 0.98));
}

.ticket-row.dimmed {
  opacity: 1;
}

.ticket-row:hover {
  background: #fafafa;
}

.ticket-row .common_stand {
  vertical-align: middle;
}

.ticket-row .category-border {
  position: relative;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid;
  padding-left: 8px;
}

.ticket-row .category strong {
  padding-top: 3px;
  font-weight: 600;
  display: block;
}

.ticket-row .category div {
  font-size: 11px;
  font-style: italic;
}

.ticket-row .category .category_name {
  font-size: 12px;
  white-space: nowrap;
  font-style: normal;
}

.ticket-row .category .block-row {
  font-weight: normal;
}

.ticket-row .category .split_type_text {
  font-style: italic;
}

.ticket-row .common_stand.extra_information {
  text-align: center;
  cursor: default;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticket-row .extra_info_icon {
  width: 100%;
  max-width: 22px;
}

.ticket-row .common_stand.type {
  text-align: center;
}

.ticket-row .eticket_image {
  width: 32px;
  height: 32px;
  cursor: default;
}

.ticket-row .common_stand.pov_symbol {
  visibility: hidden;
}

.ticket-row .common_stand.qty {
  width: 100%;
}

.ticket-row .qty_select {
  padding: 2px 0;
  box-shadow: none;
  background-color: transparent;
  background-image: none;
  outline: none;
  border-radius: 5px;
  border: solid 1px #afafaf;
  box-sizing: border-box;
  margin: 0 auto;
  width: 40px;
  text-align: center;
  text-align-last: center;
  padding-right: 0;
  font-size: 95%;
  height: 28px;
}

.ticket-row .common_stand.prive {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

.ticket-row .d-price {
  font-weight: bold;
  font-size: 14px;
  color: #333;
  display: block;
}

.ticket-row .message_each {
  font-weight: normal;
  font-size: 12px;
  color: #666;
  line-height: 8px;
  text-align: right;
  padding-top: 3px;
}

.ticket-row .common_stand.bye {
  text-align: center;
}

.green_btn {
  border: 0;
  background-color: #629d34;
  background-repeat: repeat-x;
  background-position: center;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
  outline: none;
  height: 32px;
  background-size: 100% 100%;
}

.green_btn:hover {
  border: 1px solid #5b9736;
  color: #5b9736;
  background: #fff;
}

.related-matches-grid {
  margin-top: 0;
  display: block;
}

.related-panel {
  display: block;
  border: 1px solid #d7d7d7;
  background: #fff;
  margin-bottom: 0;
}

.related-title {
  height: 40px;
  padding: 0 10px;
  background: #efefef;
  border-bottom: 1px solid #d7d7d7;
  border-top: 1px solid #d7d7d7;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.related-list {
  display: block;
}

.ticktet_sec {
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}

.events_box {
  display: inline-grid;
  grid-template-columns: [col-date] 8% [col-team] 13% [col-info] 59% [col-ticket-buy] 20%;
  grid-template-rows: 1fr;
  height: 80px;
  transition: all 0.3s;
  position: relative;
  border-bottom: 1px solid #ededed;
}

.events_box:hover {
  background: rgba(98, 157, 52, 0.3);
}

.events_box:hover .team_ticket a {
  background: #fff;
  color: #4f8b39;
  border: 1px solid #4f8b39;
}

.d_inline {
  width: 100%;
  grid-row: 1/1;
  margin: auto 0;
}

.team_vs {
  grid-column: col-team;
  display: flex;
  flex-direction: horizontal;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.team_vs img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.team_vs .vs_class {
  font-size: 13px;
  font-weight: 600;
  color: #8a8a8a;
  display: inline-block;
  vertical-align: middle;
  margin: 0 3px;
}

.team_info {
  grid-column: col-info;
  padding-left: 15px;
  width: 100%;
}

.team_info h3,
.team_info h3 a {
  color: #609c34;
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 5px;
  display: block;
  text-decoration: none;
  margin: 0;
}

.team_info span {
  line-height: 18px;
  font-weight: 600;
  font-size: 12px;
  padding-bottom: 3px;
  display: block;
}

.team_info span.place {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  white-space: nowrap;
}

.team_info span i {
  font-weight: 400;
  font-style: normal;
  color: #8a8a8a;
}

.team_date {
  grid-column: col-date;
  font-size: 12px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.team_date span {
  display: block;
  line-height: 1.4;
}

.team_ticket {
  grid-column: col-ticket-buy;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team_ticket a.green_btn {
  height: 32px;
  width: auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.inner_left.tab_mode2 {
  margin-top: 20px;
}

.related-view-all {
  height: 32px;
  border-top: 0;
  background: #f5f5f5;
  color: #8cbe45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  text-decoration: none;
}

.related-view-all p {
  font-size: 15px;
  color: #8cbe45;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
}

.info-panel {
  margin-top: 20px;
  padding: 15px;
  background: #fff;
}

.info-title,
.tags-title {
  height: 40px;
  background: #efefef;
  border-bottom: 1px solid #d7d7d7;
  border-top: 1px solid #d7d7d7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  color: #555;
  font-weight: 600;
  text-transform: uppercase;
  margin: -15px -15px 12px -15px;
  padding: 0 10px;
}

.info-panel ul {
  margin: 0;
  padding-left: 0;
  color: #5a5a5a;
  font-size: 12px;
  font-weight: 400;
}

.info-panel ul li {
  position: relative;
  line-height: 14px;
  list-style: disc outside none;
  margin-left: 20px;
  padding-bottom: 5px;
}

.vip-request {
  margin-top: 14px;
  border-top: 1px solid #ececec;
  padding-top: 12px;
}

.vip-request .inner_group h3 {
  background: #629d34;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.vip-title {
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.inner_purchase {
  padding: 10px 25px;
}

.inner_purchase p {
  color: #3d3d3d;
  font-size: 12px;
  padding: 10px 0 10px;
  font-weight: 400;
}

.inner_purchase p strong {
  font-weight: 700;
}

.grp_pur {
  width: 100%;
  margin-bottom: 6px;
}

.grp_pur input,
.grp_pur textarea {
  width: 100%;
  height: 32px;
  border: 1px solid #d7d7d7;
  padding: 0 8px;
  font-size: 12px;
  color: #3d3d3d;
  background: #fff;
  box-sizing: border-box;
  border-radius: 3px;
}

.grp_pur input[type="submit"] {
  width: 170px;
  background-color: #629d34;
  color: #fff;
  border: none;
  height: 34px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px;
}

.grp_pur input[type="submit"]:hover {
  background-color: #528a2a;
}

.grp_pur_center {
  text-align: center;
}

.vip-stats {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 25px 10px;
}

.vip-stat {
  max-width: 210px;
  text-align: center;
  color: #6f6f6f;
  font-size: 10px;
  line-height: 1.3;
}

.vip-stat strong {
  display: block;
  color: #86b533;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 3px;
}

.trust-row {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #222;
  font-size: 12px;
}

.stars {
  display: flex;
  gap: 3px;
}

.star-box {
  width: 20px;
  height: 20px;
  background: #00b67a;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tags-panel {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #d7d7d7;
}

.tags-panel .tags-title {
  margin: -10px -10px 0 -10px;
}

.tags-grid {
  padding: 13px 0 0 13px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.tag-pill {
  color: #629e34;
  font-size: 11px;
  text-transform: uppercase;
  border: 1px solid #99d363;
  border-radius: 2px;
  padding: 5px 10px;
  margin: 0 5px 5px 0;
  display: inline-block;
}

.tag-pill:hover {
  background: #629e34;
  color: #fff;
  border-color: #efefef;
}

.partner-panel {
  margin-top: 14px;
  display: flex;
  transition: transform 0.3s ease;
  justify-content: space-evenly;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
}

.partner-logo img {
  max-width: 100%;
  height: 100px;
  padding: 10px;
}

.partner-logo.round {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.partner-logo.shield {
  width: 56px;
  height: 64px;
  clip-path: polygon(18% 0, 82% 0, 100% 24%, 86% 100%, 14% 100%, 0 24%);
}

.partner-logo.badge {
  width: 108px;
  height: 60px;
  border-radius: 6px;
  font-size: 8px;
  padding: 0;
}

.partner-logo.atm {
  background: #ffffff;
  color: #d8242f;
}

.partner-logo.atm img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.partner-logo.atm span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #d8242f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: #fff;
}

.partner-logo.realbetis {
  background: transparent;
  color: #189d4b;
  border: 0;
  flex-direction: column;
  gap: 2px;
}

.partner-logo.realbetis img {
  width: 104px;
  height: auto;
}

.partner-logo.realbetis strong,
.partner-logo.barca strong,
.partner-logo.roma strong {
  display: block;
}

.partner-logo.realbetis strong {
  font-size: 15px;
  line-height: 1;
}

.partner-logo.realbetis small {
  font-size: 7px;
  line-height: 1.05;
  color: #80734e;
}

.partner-logo.barca {
  background: transparent;
  flex-direction: column;
  gap: 3px;
}

.partner-logo.barca img {
  width: 104px;
  height: auto;
}

.partner-logo.barca strong {
  font-size: 8px;
  line-height: 1.1;
}

.partner-logo.barca small {
  font-size: 9px;
  color: #ffd24b;
}

.partner-logo.inter {
  background: #ffffff;
}

.partner-logo.inter img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.partner-logo.inter span {
  display: inline-flex;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.86);
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.partner-logo.roma {
  background: transparent;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0;
}

.partner-logo.roma img {
  width: 56px;
  height: auto;
}

.partner-logo.roma strong {
  font-size: 11px;
  letter-spacing: 0.3px;
}

.partner-logo.roma small {
  font-size: 8px;
  margin-top: 3px;
}

.partner-logo.special {
  background: transparent;
  color: #1d1d1d;
  font-style: italic;
  width: 108px;
  display: grid;
  gap: 2px;
}

.partner-logo.special img {
  width: 104px;
  height: auto;
}

.special-icon {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.footer-extras {
  margin-top: 0;
  background: #464646;
  display: grid;
  grid-template-columns: 80% 20%;
  padding: 15px;
  width: 1110px;
  margin: 0 auto;
}

.footer-upper-left {
  display: flex;
  flex-direction: column;
}

.footer-upper-right {
  background: #efefef;
  padding: 12px 15px;
}

.extra-title {
  color: #c5c5c5;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: center;
  text-transform: uppercase;
}

.newsletter-wide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.newsletter-wide input {
  height: 32px;
  border: 1px solid #ccc;
  display: block;
  width: 100%;
  padding: 0 8px;
  font-size: 13px;
  margin-bottom: 5px;
  border-radius: 3px;
}

.newsletter-wide button {
  height: 32px;
  border: 0;
  background-color: #629d34;
  color: #fff;
  font-size: 16px;
  display: block;
  width: 100%;
  padding: 0 8px;
  margin-bottom: 10px;
  border-radius: 3px;
  cursor: pointer;
}

.footer-upper-right .extra-title {
  color: #67a234;
  font-size: 12px;
  border-bottom: 1px solid #4e8b39;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: block;
  width: 100%;
}

.footer-logo-rows {
  display: grid;
  grid-template-columns: 47% 53%;
  margin-top: 20px;
}

.extra-block.extra-deliver {
  padding-left: 20px;
}

.extra-block.extra-accept {
  padding: 0 20px;
}

.extra-block .extra-title {
  text-align: left;
}

.logo-strip {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 0;
}

.sprite-logo {
  display: inline-block;
  background-image: url('./real/footer-sprite-white.png');
  background-repeat: no-repeat;
  background-size: auto 70%;
  margin-top: 5px;
}

.sprite-logo:hover {
  background-image: url('./real/footer-sprite-color.png');
}

.tnt {
  background-position: 0 0;
  width: 56px;
  height: 48px;
}

.dhl {
  background-position: -54px 0;
  width: 95px;
  height: 48px;
}

.ups {
  background-position: -147px 0;
  width: 34px;
  height: 48px;
}

.royal {
  background-position: -180px 0;
  width: 36px;
  height: 48px;
}

.fedex {
  background-position: -212px 0;
  width: 64px;
  height: 48px;
}

.visa {
  background-position: -300px 0;
  width: 49px;
  height: 50px;
}

.mastercard {
  background-position: -338px 0;
  width: 42px;
  height: 48px;
}

.rapidssl {
  background-position: -376px 0;
  width: 66px;
  height: 48px;
}

.mastercardsecure {
  background-position: -440px 0;
  width: 65px;
  height: 48px;
}

.apple {
  background-position: -508px 0;
  width: 47px;
  height: 48px;
}

.google {
  background-position: -560px 0;
  width: 49px;
  height: 48px;
}

.pix {
  background-position: -613px 0;
  width: 63px;
  height: 48px;
}

.neo {
  background-position: -680px 0;
  width: 89px;
  height: 48px;
}

.boleto {
  background-position: -774px 0;
  width: 54px;
  height: 48px;
}

.paysafe {
  background-position: -830px 0;
  width: 126px;
  height: 48px;
}

.deliver-strip {
  align-items: flex-start;
}

.accept-strip {
  align-items: flex-end;
}

.cookie-row {
  background: #464646;
  border-top: 1px solid #555;
  padding: 20px 0;
  width: 1110px;
  margin: 0 auto;
}

.cookie-row a {
  color: #fff;
  cursor: pointer;
}

.address-footer {
  background: #464646;
  color: #fff;
  display: grid;
  grid-template-columns: 20% 80%;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  padding: 20px 0;
  width: 1110px;
  margin: 0 auto;
}

.address-location {
  color: #bfbfbf;
  padding: 10px 0;
  font-size: 14px;
}

.address-office {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.office-item {
  padding: 10px;
  flex: 1 1 0;
}

.office-title {
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}

.office-detail {
  color: #bfbfbf;
  padding-top: 10px;
  font-size: 12px;
}

.footer {
  margin-top: 16px;
  background: #464646;
  color: #fff;
  border-top: 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vw;
  right: -100vw;
  background: inherit;
  z-index: -1;
}

.footer-logo-box {
  background: transparent;
  color: #4a9d49;
  padding: 0;
  position: relative;
  font-size: 12px;
  font-weight: 700;
  box-shadow: none;
}

.footer-logo-image {
  display: block;
  max-width: 100%;
}

.footer-logo-box::after {
  content: none;
  position: absolute;
  top: -3px;
  right: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0, #dfeee2 36%, #6faa5f 78%, #4e7f48 100%);
}

.socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 180px 0 0;
  width: 100%;
}

.social-dot {
  width: auto;
  height: auto;
  border-radius: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  color: #c5c5c5;
  line-height: 1;
}

.footer-copybar {
  background: #464646;
  padding: 10px 0;
  display: table;
  width: 1110px;
  margin: 0 auto;
}

.footer-copy {
  display: table-cell;
  vertical-align: middle;
  color: #bfbfbf;
  font-size: 10px;
  max-width: 420px;
  padding: 5px 0;
}

.footer-sitemap {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  padding-right: 0;
}

.footer-sitemap a {
  color: #bfbfbf;
  font-size: 11px;
  font-weight: bold;
  white-space: nowrap;
  padding: 0 8px;
}

.footer-sitemap a:last-child {
  padding-right: 0;
}

.footer-sitemap a:hover {
  color: #528f39;
}

.side-stat {
  position: fixed;
  left: -300px;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 12px;
  color: #333;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: left 0.4s ease;
  max-width: 260px;
  line-height: 1.4;
}

.side-stat p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.side-stat strong {
  color: #629d34;
  font-size: 20px;
  min-width: 24px;
  text-align: center;
}

.side-stat span {
  font-size: 12px;
  color: #333;
}

.close_people_look {
  position: absolute;
  top: 4px;
  right: 8px;
  cursor: pointer;
  font-size: 11px;
  color: #999;
  font-weight: bold;
}

.close_people_look:hover {
  color: #333;
}

.side-stat.top {
  bottom: 60px;
}

.side-stat.bottom {
  bottom: 10px;
}

.side-stat.visible {
  left: 10px;
}

.info-popup {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 50;
  background: #fff;
  border: 1px solid #d7d7d7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  padding: 8px 12px;
  font-size: 11px;
  min-width: 200px;
  border-radius: 3px;
}

.info-popup ul {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: disc;
}

.info-popup li {
  padding: 2px 0;
  color: #444;
}

.buy_call_us {
  display: flex;
  align-items: flex-end;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 999;
}

.buy_call_us .buy_call_us_container {
  background-color: #fff;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  margin-right: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.buy_call_us .buy_call_us_container.call_me_open {
  opacity: 1;
  pointer-events: auto;
}

.buy_call_us .buy_call_us_header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2ebdf6;
  border-radius: 5px 5px 0 0;
  padding: 0;
}

.buy_call_us .buy_call_us_title {
  font-size: 15px;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  width: 100%;
}

.buy_call_us .buy_call_us_description {
  padding: 5px 7px;
  font-size: 13px;
  font-weight: 400;
  color: #333;
}

.buy_call_us .buy_call_us_input {
  display: flex;
  padding: 5px;
  gap: 0;
  margin-bottom: 10px;
}

.buy_call_us .buy_call_us_number_input {
  width: 165px;
  padding-left: 5px;
  border: 1px solid #ccc;
  border-right: 0;
  border-radius: 3px 0 0 3px;
  height: 30px;
  font-size: 12px;
}

.buy_call_us .buy_call_me_back_button {
  background-color: #2ebdf6;
  padding: 5px 10px;
  border: 0;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}

.buy_call_me_back_open {
  background: #6dcff6;
  border: 1px solid transparent;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.buy_call_me_back_open:hover {
  background: #2ebdf6;
}

.buy_call_me_back_open .call_me_back_phone {
  font-size: 20px;
  color: #fff;
  transition: all 0.3s;
}

.buy_call_me_back_open .call_me_back_close_button {
  font-size: 16px;
  color: #fff;
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
}

.buy_call_me_back_open.call_me_open .call_me_back_phone {
  opacity: 0;
  transform: rotate(360deg);
}

.buy_call_me_back_open.call_me_open .call_me_back_close_button {
  opacity: 1;
  transform: rotate(360deg);
}

.buy_call_me_back_open.call_me_open {
  background: #2ebdf6;
}

.side-tools {
  position: fixed;
  right: max(8px, calc((100vw - 1110px) / 2 - 34px));
  top: 216px;
  display: grid;
  gap: 246px;
  z-index: 25;
}

.tool-phone,
.tool-chat {
  width: 19px;
  height: 26px;
  border-radius: 4px;
  background: #4dc4e5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  font-size: 13px;
}

.tool-phone {
  border: 0;
  background: #49c6e7 url('./real/call-icon2.png') center center / 11px 11px no-repeat;
  font-size: 0;
}

.tool-chat {
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 0;
  font-size: 8px;
  text-align: center;
  line-height: 1.05;
  border: 0;
  box-shadow: none;
}

.tool-chat img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .side-tools {
    right: 12px;
  }
}

@media (max-width: 1023px) {
  #zone_block_filter .filter-btn {
    display: block;
  }

  #zone_block_filter .show_hide_map_div {
    display: flex;
  }
}

@media (max-width: 860px) {
  .page-center,
  .topline-inner,
  .header-inner,
  .notice-bar,
  .content,
  .footer-inner {
    width: min(1110px, calc(100vw - 16px));
  }

  .event-layout {
    flex-direction: column;
    gap: 12px;
  }

  .left-ticket-column {
    width: 100%;
  }

  .business-sidebar {
    width: 100%;
    position: static;
  }

  .header-inner {
    display: block;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-extras {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .address-office {
    flex-direction: column;
    gap: 8px;
  }

  .footer-upper-left {
    width: 100%;
  }

  .footer-upper-right {
    margin-left: 0;
    margin-top: 10px;
  }

  .footer-copybar {
    width: min(1110px, calc(100vw - 16px));
    display: block;
  }

  .footer-sitemap {
    display: block;
    text-align: left;
    padding-top: 8px;
  }

  .socials {
    padding-right: 0;
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 20px;
  }

  .social-dot {
    font-size: 20px;
  }

  .cookie-row,
  .address-footer {
    width: min(1110px, calc(100vw - 16px));
  }

  .side-stat,
  .side-tools {
    display: none;
  }
}

.mobile-only {
  display: none !important;
}

@media (max-width: 767px) {
  .mobile-only {
    display: block !important;
  }

  .desktop-only {
    display: none !important;
  }

  .map-panel {
    width: 100%;
    float: none;
    position: relative;
    top: 0;
  }

  .list-panel {
    width: 100%;
    float: none;
    height: auto;
  }

  .ticket-list-legacy {
    height: auto;
  }

  .filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .events_box {
    height: 130px;
    align-content: center;
    padding-bottom: 10px;
  }

  .buy_call_us {
    display: none;
  }

  .topline-links {
    display: none;
  }

  .topline-actions {
    flex-wrap: wrap;
  }

  .page-shell {
    min-width: 0;
  }

  .page-center,
  .topline-inner,
  .header-inner {
    width: 100%;
  }

  .login_form {
    right: 0;
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 720px) {
  .header-nav,
  .topline-links,
  .topline-actions {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ========== Static Pages ========== */
.static-page-panel {
  background: #fff;
  border: 1px solid #e0e0e0;
  margin: 10px 0 20px;
  padding: 0;
}

.static-page-title {
  background: #0e8d93;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
}

.static-page-body {
  padding: 15px 18px;
  font-size: 12px;
  line-height: 1.65;
  color: #4d4d4d;
}

.static-page-body h3 {
  font-size: 13px;
  color: #333;
  margin: 18px 0 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e8e8e8;
}

.static-page-body h4 {
  font-size: 12px;
  color: #333;
  margin: 12px 0 4px;
}

.static-page-body p {
  margin: 6px 0;
}

.static-page-body ul {
  margin: 8px 0;
  padding-left: 22px;
}

.static-page-body ul li {
  margin-bottom: 4px;
}

.static-page-body a {
  color: #0e8d93;
  text-decoration: underline;
}

/* Contact page */
.contact-phones {
  margin: 10px 0;
}

.contact-row {
  padding: 4px 0;
  font-size: 12px;
}

.contact-row a {
  color: #0e8d93;
}

.contact-addresses {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0;
}

.address-block {
  flex: 1 1 200px;
  min-width: 200px;
}

.address-block h4 {
  border-bottom: none;
  margin-bottom: 2px;
}

/* FAQ page */
.faq-item {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.faq-item h4 {
  cursor: pointer;
  color: #0e8d93;
  border-bottom: none;
}

.faq-item p {
  margin: 4px 0;
}

/* Blog page */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-item {
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}

.blog-item h3 {
  font-size: 14px;
  color: #0e8d93;
  margin: 0 0 4px;
  border-bottom: none;
}

.blog-date {
  font-size: 10px;
  color: #999;
  margin-bottom: 4px !important;
}

/* ========== World Cup Listing ========== */
.wc-hero {
  background: linear-gradient(135deg, #0e8d93 0%, #128d99 100%);
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  margin-bottom: 0;
}

.wc-hero h1 {
  font-size: 22px;
  margin: 0 0 6px;
}

.wc-hero p {
  font-size: 13px;
  margin: 0;
  opacity: 0.9;
}

.wc-matches-panel {
  background: #fff;
  border: 1px solid #e0e0e0;
  margin: 0 0 20px;
}

.wc-matches-panel .ticket_head {
  background: #0e8d93;
  color: #fff;
  padding: 8px 12px;
}

.wc-matches-panel .ticket_head h2 {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

.wc-group {
  border-bottom: 1px solid #e0e0e0;
  padding: 0;
}

.wc-group-title {
  background: #f5f5f5;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  padding: 6px 12px;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}

.wc-matches-panel .events_box {
  border-bottom: 1px solid #ededed;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  height: auto;
  min-height: 70px;
}

.wc-matches-panel .events_box:last-child {
  border-bottom: none;
}

.wc-matches-panel .team_date {
  width: 80px;
  flex-shrink: 0;
}

.wc-matches-panel .team_vs {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wc-matches-panel .team_vs img {
  width: 24px;
  height: 24px;
}

.wc-matches-panel .team_info {
  flex: 1;
  min-width: 0;
}

.wc-matches-panel .team_info h3 {
  font-size: 12px;
  margin: 0 0 2px;
}

.wc-matches-panel .team_info h3 a {
  color: #0e8d93;
  text-decoration: none;
}

.wc-matches-panel .team_info h3 a:hover {
  text-decoration: underline;
}

.wc-matches-panel .team_info span {
  display: block;
  font-size: 11px;
  color: #777;
}

.wc-matches-panel .team_ticket {
  width: 80px;
  flex-shrink: 0;
  text-align: right;
}

/* ========== Pagination ========== */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.show-all {
  padding: 10px 0;
}

.event-pagination {
  display: flex;
  justify-content: flex-end;
  padding: 10px 0;
  align-items: flex-end;
}

.page-link {
  display: inline-block;
  padding: 6px 10px;
  margin: 0 5px;
  text-decoration: none;
  color: #333;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.1s, color 0.1s, transform 0.1s;
}

.page-link:hover {
  background-color: #619d35;
  color: white;
  transform: scale(1.1);
}

.page-link.active {
  background-color: #619d35;
  color: white;
  font-weight: bold;
}

.page-link:disabled {
  cursor: not-allowed;
  background-color: #e0e0e0;
  color: #aaa;
}

.dots {
  margin: 0 5px;
  font-size: 16px;
  color: #333;
  line-height: 24px;
}
