:root{
    --font1: "Manrope", sans-serif;
    --font2: "Nunito Sans", sans-serif;
    --font3: "Inter", sans-serif;
    --lightblue: rgb(224, 236, 255);
    --dark: #000f20;
    --gray: #f5f7f8;
    --green: #80ae44;
    --lightgreen: #e7ffc3;
    --textgray: rgb(103, 115, 131);
}
.text-gray{
    color: var(--textgray);
}
body{
    font-family: var(--font3);
    font-size: 14px;
}
h1,h2,h3,h4,h5{
    font-family: var(--font1);
}
header.dark_header {
    position: relative;
    z-index: 1;
}
header.dark_header .bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
header.dark_header .bg_overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    transform: scale(1.1);
}
header.dark_header .bg_overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgb(0, 0, 0) 100%);
    z-index: 1;
}
header.dark_header ul.navbar-nav>li:not(:last-child){
    margin-right: 1.3em;
}
header.dark_header ul.navbar-nav>li>.nav-link {
    color: #fff;
    background: transparent !important;
}
header.dark_header .navbar form {
    position: relative;
}
header.dark_header .navbar form input.form-control {
    padding: 10px 15px 10px 50px;
    border: none !important;
    border-radius: 7px;
}
header.dark_header .navbar form button.btn {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    aspect-ratio: 1 / 1;
    border: none !important;
    padding: 0;
    padding-left: 11px;
}
header.dark_header .navbar form {
    position: relative;
    flex: auto;
    max-width: 370px;
}
.ticket_title {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}
.ticket_title h1 {
    font-size: 42px;
    font-weight: bold;
}
.ticket_title ul.custabs {
    list-style: none !important;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}
.ticket_title ul.custabs li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    line-height: normal;
    display: inline-block;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}
.ticket_title ul.custabs li.active a {
    font-weight: bold;
}
.ticket_title ul.custabs li a:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #fff;
    transition: all .4s ease;
    visibility: hidden;
    opacity: 0;
}
.ticket_title ul.custabs li.active a:before{
    visibility: visible;
    opacity: 1;
    width: 100%;
}
.filter_inner {
    display: flex;
    gap: 9px;
}
.usmylocation{
    padding: 0;
    aspect-ratio: 1/1;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.filter_item .dropdown button.btn {
    height: 37px;
    padding: 5px 16px;
    line-height: normal !important;
}
.filter_item .dropdown button.btn:after {
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: "\f107";
    border: none !important;
    margin: 0 !important;
    vertical-align: unset !important;
    display: inline;
    margin-left: 6px !important;
}
.filter_item ul.dropdown-menu {
    min-width: 200px;
    min-height: 48px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(16, 24, 40, 0.02) 0px 0px 8px -4px, rgba(16, 24, 40, 0.1) 0px 0px 24px -4px;
    border-radius: 12px;
    max-width: 420px;
    max-height: 400px;
    border: none !important;
    padding: 8px 0;
    margin-top: 7px !important;
    overflow: auto;
    font-size: inherit;
}
.filter_item ul.dropdown-menu li a{
    box-sizing: border-box;
    margin: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    cursor: default;
    min-height: 42px;
    line-height: normal;
    position: relative;
    z-index: 1;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.filter_item ul.dropdown-menu li a::after{
    content: "\f00c";
    /* position: absolute; */
    top: 0;
    right: 0;
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    font-size: 88%;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}
.filter_item ul.dropdown-menu li.active a{
    background: rgb(245, 247, 248);
}
.filter_item ul.dropdown-menu li.active a::after{
    visibility: visible;
    opacity: 1;
    color: green;
}
.filter_item ul.dropdown-menu li a[aria-selected="false"] {
    font-size: 80%;
    font-weight: bold;
    padding: 8px 16px 4px;
    display: flex;
    gap: 8px;
    position: sticky;
    top: 0px;
    background: rgb(255, 255, 255);
    min-height: unset !important;
    color: #000;
    line-height: normal !important;
}
.search_box_inner input.form-control {
    border-radius: 7px;
    padding: 12px 15px 12px 46px;
    min-width: 300px;
    box-shadow: none !important;
}
.search_box_inner button {
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    opacity: .6;
    font-size: 90%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding-left: 19px;
}
.search_box {
    margin: 10px 16px;
}
.widget_title{
    opacity: .8;
    font-size: 18px;
    padding-bottom: 15px;
    font-weight: 600;
}
.foot_link li a{
    text-decoration: none;
    color: inherit;
    display: inline-block;
    margin-bottom: 5px;
}
.footer_top .panel{
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 7px;
}
.footer_top .panel:not(:last-child){
    margin-bottom: 15px;
}
.foot_copyright{
    color: #888;
    font-size: 13px;
}
.foot_copyright a{
    text-decoration: none;
}
.viewed_box {
    background-color: var(--lightblue);
    border-radius: 9px;
    padding: 12px 16px;
    color: var(--dark);
    fill: var(--dark);
    display: flex;
    align-items: center;
    gap: 4px;
}
.viewed_box .icon svg {
    fill: none;
    height: 24px;
    width: 24px;
}
.inner_sec{
    background-color: var(--gray);
}
.event_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.event_item {
    background-color: #fff;
    display: flex;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #cfd4d9;
    transition: all .3s ease;
    position: relative;
}
.mobile-link {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.event_item:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 11px;
    background-color: #e7ffc3;
    border-color: #b4d287;
}
.event_item .event_right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0px 8px 0px 16px;
}
.event_item .event_left {
    border-right: 1px solid #cfd4d9;
    min-height: 66px;
    height: 100%;
    display: flex;
    padding: 0px 20px 0 10px;
    flex-direction: column;
    max-width: 110px;
}
.event_item .event_left .date {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}
.event_item .event_left .day-time {
    text-transform: uppercase;
}
.event_item .event_left small {
    line-height: 1.4;
    display: inline-block;
    font-weight: bold;
}
.event_right_info .location_event {
    font-size: 16px;
}
.event_right_info .location_event img {
    height: 13px;
    vertical-align: baseline;
}
.event_right_info .event_name {
    font-weight: bold;
    font-size: 16px;
    opacity: .7;
    padding-top: 1px;
}
.event_right_info {
    align-self: flex-start;
}
.see_tickets_btn .btn {
    font-size: 14px;
    padding: 7px 15px;
    border-radius: 7px;
}
.badge-light {
    background-color: #e0ecff;
    color: #444;
    margin-top: 6px;
}
.newticket {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: normal;
}
.newticket button {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background-color: transparent !important;
    padding: 0 !IMPORTANT;
    line-height: normal;
}
.cuspagination ul.pagination {
    gap: 8px;
    margin-top: 1em;
}
.cuspagination ul.pagination li .page-link {
    border-radius: 70px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: #333;
    font-size: 14px;
}
.cuspagination ul.pagination li.active .page-link {
    background-color: var(--green);
    border-color: var(--green);
    color: #fff !important;
    font-weight: bold;
}
#seemoreContent button.btn-close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 999;
}
.right_show .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.right_show .card .card-body h4 {
    font-weight: bold;
}
.badge-green {
    background-color: var(--lightgreen);
    border-color: var(--lightgreen);
    color: #3f6600;
    font-size: 13px;
    font-weight: normal;
}
.right_show .card .card-body .desc {
    padding-top: 10px;
}
.right_show .card .card-body .desc a {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
}
.show_share {
    display: flex;
    gap: 5px;
}
.show_share a {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
}
.right_show {
    margin-top: -17em;
    z-index: 9;
    position: sticky;
    top: 20px;
}
.headertop_playinfo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.headertop_playinfo .play_img {
    max-width: 75px;
}
.headertop_playinfo .play_img img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 5px;
    width: 100%;
    display: block;
}
.headertop_playinfo .play_info_inner h4 {
    color: rgb(63, 102, 0);
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    line-height: normal;
    margin-bottom: 3px;
}
.headertop_playinfo .play_info_inner div {
    font-size: 12px;
}
.headertop_playinfo .play_info_inner div .badge {
    font-size: 11px !important;
}
.headertop_playinfo .play_info_inner div .badge {
    font-size: 11px !important;
    padding: 4px 8px !important;
    line-height: 15px;
    margin-right: 6px;
}
.headertop_playinfo .play_info_inner .location_dtl a {
    color: inherit;
}
.ticket_header{
    position: relative;
    background-color: rgb(255, 255, 255);
    color: rgb(103, 115, 131);
    box-shadow: rgba(47, 52, 59, 0.145) 0px 2px 4px 0px;
    z-index: 3;
}
.ticket_header form {
    position: relative;
}
.ticket_header form input.form-control {
    width: 330px;
    background: rgb(246, 248, 249);
    color: rgb(47, 52, 59);
    border: 1px solid rgb(230, 233, 235);
    border-radius: 32px;
    min-height: 50px;
    padding-left: 46px;
    box-shadow: none !important;
}
.ticket_header form button.btn {
    position: absolute;
    top: 0;
    height: 100%;
    left: 7px;
    font-size: 13px;
    color: var(--green);
}
.ticket_header ul.navbar-nav li a.nav-link {
    font-weight: 700;
    color: #000;
}
.ticket_header ul.navbar-nav li:not(:last-child) {
    margin-right: 12px;
}
.ticket_sec{
    background-color: #f2f2f2;
}
.ts_right{
    min-height: calc(100vh - 111px);
    overflow: auto;
    max-height: calc(100vh - 111px);
    box-shadow: rgba(0, 0, 0, 0.1) 0.125rem 0px 0.625rem, rgba(0, 0, 0, 0.05) 0.0625rem 0px 0px;
}
.topbar_ticket {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgb(207, 212, 217);
}
.ticket_soldout {
    margin: 12px 12px 0px;
    padding: 12px;
    background: rgb(245, 247, 248);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}
.ticket_soldout p {
    color: #000;
}
.ticket_soldout a {
    color: rgb(95, 96, 98);
    text-decoration: none;
}
.ticket_soldout .close_box {
    position: absolute;
    right: 12px;
    z-index: 99;
    top: 12px;
    font-size: 15px;
    color: #333;
}
.topbar_ticket .card-body {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.topbar_ticket .card-body .total_listing {
    font-weight: 500;
}
.topbar_ticket .card-body .filter_sort button.btn {
    height: auto !important;
    padding: 0 !important;
    font-size: 14px;
    border: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
}
.topbar_ticket .card-body .filter_sort button.btn::after{
    display: none;
}
.remaining_item {
    padding: 12px 20px 0;
}
.ticket_list_inner {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}
.ticket_list_inner .ticket_item {
    min-height: 80px;
    border-bottom: 1px solid rgb(191, 192, 192);
    padding: 8px 12px;
    cursor: pointer;
    background-color: #fff;
    margin: 8px;
    border-radius: 4px;
    box-shadow: rgba(47, 52, 59, 0.145) 0px 0px 2px 0px;
    transition: all .4s ease;
}
.ticket_list_inner .ticket_item:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 6px 0px;
}
.ticket_list {
    background-color: #f6f8f9;
}
.ticket_head_left h4 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}
.ticket_head_left p {
    font-size: 12px;
    font-weight: bold;
    padding-top: 2px;
}
.ticket_head_left ul {
    list-style: none !important;
    padding: 0;
    font-size: 12px;
    color: var(--textgray);
}
.ticket_head_left ul li {
    display: flex;
    gap: 5px;
}
.ticket_head_left ul li>svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}
svg[fill="textNegative"] {
    fill: #d91a1a;
    cursor: default;
    pointer-events: inherit;
    line-height: normal;
}
svg[fill="currentColor"] {
    fill: currentColor;
    cursor: default;
    pointer-events: inherit;
    line-height: normal;
}
.ticket_head_left ul li span[data-bs-toggle="tooltip"] {
    line-height: normal;
    vertical-align: baseline;
    position: relative;
    top: -1px;
}
.ticket_body {
    font-size: 12px;
}
.ticket_body .badge {
    font-size: 12px;
    border-radius: 5px;
    font-weight: 500;
    display: flex;
    gap: 3px;
    align-items: center;
}
.badge-danger {
    background: rgb(255, 232, 236);
    color: rgb(195, 0, 99);
    fill: rgb(225, 34, 119);
}
.ticket_head_right h5 {
    font-size: 16px;
    font-weight: 900;
    color: #000;
}
.ticket_head_right p {
    color: var(--textgray);
    font-size: 12px;
    font-weight: 500;
    text-align: right;
}
.ticket_head_right {
    text-align: right;
}
.rating_tag {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: 5px;
}
.rating_tag .rating {
    padding: 0px 6px;
    border-radius: 6px;
}
.rating_tag b {
    font-weight: inherit;
}
.rating-5{
    color: #00865a;
}
.rating-5 .rating{
    background-color: #00865a;
    color: white;
}

.rating-4{
    color: #3e861b;
}
.rating-4 .rating{
    background-color: #3e861b;
    color: white;
}

.rating-3{
    color: #6e7c25;
}
.rating-3 .rating{
    background-color: #6e7c25;
    color: white;
}

.rating-1{
    color: #db2c7b;
}
.rating-1 .rating{
    background-color: #db2c7b;
    color: white;
}
#checkoutPopup button.btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 99;
}
.checkoutPopup .modal_head h4 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 2px;
}
.checkoutPopup .modal_head h5 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}
.checkoutPopup .modal_head p {
    font-size: 14px;
    margin-bottom: 7px;
    color: var(--textgray);
}
.checkoutPopup .modal_head div a {
    color: var(--textgray);
    font-size: 12px;
    text-decoration: none;
}
.checkoutPopup .modal_body {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #ddd;
    padding: 14px 0;
    margin: 14px 0;
}
.modal_ticket_info {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.modal_ticket_info div:first-child {
    flex: 1;
}
.modal_ticket_info div h4 {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    margin-bottom: 3px;
}
.modal_ticket_info div h5 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 0;
}
.modal_ticket_info div small {
    font-size: 16px;
    color: var(--textgray);
    font-weight: 500;
}
.modal_ticket_info div h6 {
    margin-bottom: 0;
    font-size: 11px;
    color: var(--textgray);
}
.modal_ticket_info div p {
    font-size: 16px;
    margin-right: 15px;
    margin-bottom: 0;
}
.modal_ticket_info .fee {
    color: var(--textgray);
    max-width: 400px;
}
.modal_ticket_info .badge {
    display: flex;
    padding: 11px;
    -webkit-box-align: center;
    align-items: center;
    gap: 11px;
    border-radius: 8px;
    background: rgb(246, 248, 249);
    margin-top: 12px;
    width: 100%;
    justify-content: space-between;
    font-weight: normal;
    font-size: 14px;
}
.modal_ticket_info .badge>span:first-child>svg {
    fill: #00a645;
    margin-right: 3px;
}
.checkoutPopup .modal_footer ul li {
    display: flex;
    gap: 7px;
    margin-bottom: 6px;
}
.checkoutPopup .modal_footer ul li svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
}
.checkout_sec{
    /* background-color: #f2f2f2; */
}
.checout_event_box {
    overflow: hidden;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 16px;
    box-sizing: border-box;
    display: flex;
    position: relative;
    margin-bottom: 1em;
}
.checout_event_box .share_ticket {
    position: absolute;
    right: 14px;
    top: 10px;
    z-index: 99;
}
.checout_event_box .eventimg {
    flex: 0 0 28%;
    max-width: 204px;
    width: 100%;
}
.checout_event_box .eventimg img {
    height: 100%;
    object-fit: cover;
    display: block;
    width: 100%;
}
.checout_event_box .event_dtlright {
    padding: 24px;
    width: 100%;
    flex: 1;
}
.checout_event_box .event_dtlright h4 {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    margin-bottom: 1px;
}
.checout_event_box .event_dtlright p {
    font-size: 16px;
    margin-bottom: 0;
}
.checout_event_box .event_dtlright p small {
    font-size: 12px;
}
.ticket_info {
    display: flex;
    margin-top: 15px;
    gap: 12px;
}
.ticket_info .ticket_left {
    position: relative;
    align-self: baseline;
}
.ticket_info .ticket_left svg {
    fill: currentColor;
    display: block;
}
.ticket_info .ticket_left .ticket_count {
    color: white;
    left: 0px;
    position: absolute;
    right: 0px;
    text-align: center;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    line-height: normal;
}
.ticket_info .ticketright {
    align-self: center;
    line-height: normal;
}
.ticket_info .ticketright div {
    font-size: 12px;
    margin-bottom: 1px;
}
.highdemad_box {
    background-color: rgb(245, 247, 248);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.highdemad_box h4 {
    display: flex;
    align-items: center;
    margin: 0;
    color: #d81819;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 2px;
    gap: 6px;
}
.highdemad_box p {
    margin-bottom: 0;
}
.checkout_sec .accordion {
    border: 1px solid rgb(207, 212, 217);
    border-radius: 7px;
    overflow: hidden;
    background-color: #fff;
}
.checkout_sec .accordion .accordion-header {
    background-color: transparent !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #000 !important;
    box-shadow: none !important;
    cursor: pointer;
}
.checkout_sec .accordion .accordion-header img {
    filter: grayscale(1);
    margin-right: 7px;
    height: 16px;
    width: 16px;
    object-fit: contain;
    line-height: normal;
    transition: all .2s ease;
}
.checkout_sec .accordion .accordion-body {
    padding-top: 0 !important;
}
.checkout_sec .accordion .accordion-body ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}
.checkout_sec .accordion .accordion-body ul li:not(:last-child) {
    margin-bottom: 5px;
}
.checkout_sec .accordion .accordion-body ul li>img:first-child {
    width: 19px;
    height: 19px;
    object-fit: contain;
    margin-right: 3px;
}
.checkout_sec .accordion .accordion-body ul li span img {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.checkout_sec .accordion .accordion-header.collapsed img {
    filter: unset;
}
.checkout_sec form .form-group .form-control {
    font-size: 14px;
    min-height: 46px;
    border-radius: 7px;
    padding: 10px 22px;
    border: 1px solid #ddd;
    font-weight: 600;
    box-shadow: none !important;
}
.checkout_sec form .form-group .form-control[disabled] {
    background-color: transparent;
    cursor: not-allowed;
}
.checkout_sec form .form-group .form-control[disabled]::placeholder {
    opacity: .3;
}
.confirm_box h4 {
    font-size: 16px;
}
.confirm_box p {
    font-size: 16px;
}
.confirm_box .btn {
    padding: 10px 20px;
}
.btn-success {
    background-color: var(--green);
    border-color: var(--green);
    color: #000;
}
.checkout_time p:last-child {
    font-size: 12px;
}
span#countdown,
span#countdown1 {
    background: white;
    border-radius: 4px;
    border: 1px solid rgb(207, 212, 217);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 4px;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    min-width: 82px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-family: var(--font1);
    z-index: 1;
}
span#countdown:before,
span#countdown1:before {
    width: 100%;
    height: 50%;
    background: rgb(246, 248, 249);
    border-bottom: 1px solid rgba(207, 212, 217, 0.5);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.stadium_img {
    height: 100%;
    max-height: calc(100vh - 111px);
    overflow: hidden;
}
.stadium_img object {
    display: block;
    object-fit: contain;
    height: 100%;
    width: 100%;
}
@media screen and (max-width:767px){
    .headertop_playinfo .play_img{
        display: none;
    }
    .stadium_img {
        max-height: calc(50vh - 111px);
    }
    .ts_right.bg-white {
        min-height: unset;
        max-height: calc(50vh - 0px);
    }
    .ticket_list_inner .ticket_item {
        margin: 0;
        border-radius: 0;
    }
    .remaining_item {
        padding: 12px 12px 12px;
    }
    .ticket_soldout {
        gap: 0px;
    }
    .see_tickets_btn {
        display: none;
    }
    .event_item .event_left {
        max-width: 90px;
        font-size: 13px;
        line-height: normal;
        padding-right: 10px;
    }
    .event_item .event_left .date {
        font-size: 14px;
    }
    .event_item .event_left small {
        line-height: normal;
    }
    .event_item .event_left .day-time {
        padding: 2px 0;
    }
    .event_right_info .location_event,
    .event_right_info .event_name {
        font-size: 14px;
    }
    .right_show {
        margin: 0;
        position: unset;
        display: none;
    }
    .filter_inner {
        overflow: auto;
    }
    .ticket_title h1 {
        font-size: 22px;
    }
    .filter_item .dropdown button.btn {
        font-size: 13px;
    }
    .follow_btn .btn {
        font-size: 13px;
    }
    span.navbar-toggler-icon {
        filter: brightness(20.5);
        font-size: 14px;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        height: 100% !important;
        width: 100% !important;
        max-width: 70%;
        background-color: #f6f6f6;
        padding: 20px !important;
        color: #000;
        z-index: 99999;
        box-shadow: 2px 0 10px rgba(0, 0, 0, .11);
        display: block !important;
        min-height: 100%;
        transform: translateX(-100%);
        transition: transform .4s ease;
        visibility: hidden;
        opacity: 0;
    }
    .navbar-collapse.show {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }
    header.dark_header .navbar form input.form-control {
        font-size: 13px;
        padding: 10px 15px 10px 40px !important;
        border: 1px solid #ddd !important;
    }
    header.dark_header ul.navbar-nav>li>.nav-link {
        color: #333;
    }
    header.dark_header .navbar form{
        margin-bottom: 16px;
    }
    header.dark_header .navbar form button.btn {
        font-size: 13px;
        padding-left: 0;
    }
    .checout_event_box .event_dtlright p {
        font-size: 13px;
    }
    .checout_event_box .event_dtlright {
        padding: 17px;
    }
    .checout_event_box .eventimg {
        flex: 0 0 36%;
    }
    .highdemad_box {
        gap: 30px;
    }
}
