/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    color: #333;
}
a {
    color: inherit;
    text-decoration: none;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.9);	
    position: relative; 
}

.five-stars {
	width: 100px; height: auto; margin-bottom: 10px;
}
/* Header */
header {
    background-color: #ffffff;
    border-bottom: 2px solid #c8e6c9;
    padding: 10px 0;
}
header .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.mobile-row-1, .mobile-row-2 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 50px;
}

/* Navigation */
.nav-links {
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    width: 100%;
	z-index: 1000;
}

	.purchase-details {
		margin: 10px;
		width: 50%;
		
	}

	
	.customer-details {
		margin: 10px;
		width: 50%;
		
	}
.nav-links.active {
    display: flex;
}
.nav-item {
    position: relative;
    color: #388e3c;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 0;
    text-align: left; /* Change this from center to left */
    width: 100%;
    white-space: nowrap;
    margin-left: 30px;
}
.nav-item i {
    font-size: 20px;
    margin-right: 5px;
}
.nav-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    left: 40px;
    background-color: white;

	z-index: 2000;
}
.nav-item:hover .nav-dropdown {
    display: block;
}


.snav-item {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    background-color: #ffffff;
    color: #388e3c;
}

a:last-child .snav-item {
    border-bottom: none;
}
.snav-item:hover {
    background-color: #388e3c;
    color: #ffffff;
}

.nav-dropdown:last-child {
	border-bottom: 0;
}


.league-title {
    font-weight: bold;
    background-color: #e8f5e9;
    color: #388e3c;
    cursor: default;
}
.league-title:hover {
    background-color: #e8f5e9;
    color: #388e3c;
}

/* Hamburger Menu */
.hamburger-menu {
    font-size: 30px;
    cursor: pointer;
}

/* Search Container */
.search-container {
    text-align: center;
    padding: 20px 0;
    background-color: #388e3c;
    border-bottom: 2px solid black;
    border-top: 2px solid black;
}
.input-group {
    width: 80%;
    max-width: 500px;
    display: flex;
    margin: 0 auto;
}
.search-box {
    flex-grow: 1;
    padding: 10px;
    border: 2px solid #ffffff;
    font-size: 16px;
    margin-right: 5px;
    color: black;
    background: white;
    max-width: 95%;
}
.search-button {
    padding: 10px 20px;
    background-color: #e8f5e9;
    color: darkslategrey;
    border: none;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-button i {
    font-size: 16px;
}
#search-results {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    border-radius: 5px;
    overflow: hidden;
}
.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
}
.search-result-item:hover {
    background-color: #e8f5e9;
}
.fixture-name-search {
    font-weight: bold;
    color: #388e3c;
}
.fixture-details-search {
    font-size: 14px;
    color: #666;
}
.overflow-container {
    position: relative;
    background-image: url("http://www.ticketscore.net/imgstore/football_banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
}
.overflow-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 128, 0, 0.25);
}

/* Dashboard */
.dashboard-container {
    display: flex;
}
.dashboard-header {
    background-color: #2c6b2f;
    color: white;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.dashboard-section {
    margin-bottom: 20px;
}
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    background-color: #fff;
    text-align: center;
}
.card .header-area {
    background-color: #e8f5e9;
    padding: 15px;
    border-bottom: 2px solid #c8e6c9;
    color: darkslategrey;
    font-weight: 600;
    text-align: center;
}

.fansure-logo-mini {
	max-height: 20px;
	
}

.header-area { 
    background-color: #e8f5e9;
    padding: 5px;
    border-bottom: 2px solid #388e3c;
    color: darkslategrey;
    font-weight: 600;
    text-align: center;
}
.card-body {
    padding: 20px;
}


h1 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
h2 {
    color: #2c6b2f;
    font-size: 1.75rem;
    margin-bottom: 20px;
    text-align: center;
}
.dashboard-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.dashboard-section .col {
    flex: 1;
    min-width: 250px;
}

/* Media Queries */
@media (min-width: 769px) {
    header .container {
        flex-direction: row;
    }

    .nav-links {
        flex-direction: row;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .mobile-row-1, .mobile-row-2 {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .hamburger-menu {
        display: none;
    }
}

.review-content {
    margin-bottom: 20px;
}

.review-container {
    background-color: white;
    padding: 20px;
    margin: 20px;
    text-align: center;
}

.guarantee {
    background-color: #e9f5e9;
    padding: 20px;
    text-align: center;
    font-weight: bold;
}

.guarantee-content {
	padding: 10px;
	font-size: 0.8em;
	background-color: #ffffff;
	text-align: justify;
	justify-content: space-between;
	text-justify: inter-character;
	color: #388e3c;
}

.main-content {
    display: flex;
	flex-direction: column;
    justify-content: space-around;
    padding-top: 20px;
}

.index-main-content {
    display: flex;
	flex-direction: row;
    justify-content: space-around;
    padding-top: 20px;
}

.popular-events {
    width: 60%;
    padding: 0px;
    margin-right: 10px;
}

.index-sidebar {
    width: 30%;

}

.event-card {
    border-bottom: 1px solid #ccc;
    padding: 5px;
    display: flex;
    align-items: center;
}

.event-card h4 {
    margin: 0;
}

.header-logo {
    height: 100px;
}

.fixture-card {
    display: flex;
    border-bottom: 2px solid #c8e6c9;
    align-items: center;
	background-color: white;
}

.fixture-name-search {
    font-weight: bold;
    color: #4caf50;
    text-align: left;
    line-height: 1;
}

.fixture-details-search {
    font-size: smaller;
    color: #666;
    text-align: left;
    line-height: 1;
}

.date-square {
    color: white;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
}

.date-square .month {
    font-size: 1em;
    background-color: #2c6b2f;
    width: 100%;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: 200;
    line-height: 1;
}

.date-square .day {
    font-size: 2em;
    width: 100%;
    text-align: center;
    color: #2c6b2f;
    line-height: 1;
}

.date-square .year {
    font-size: 0.9em;
    width: 100%;
    text-align: center;
    color: #2c6b2f;
    font-weight: 200;
    line-height: 1;
}

.fixture-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.popular-fixture-details {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
	width: 100%;
	margin-left: 10px
}

.text-details {
    flex-grow: 1;
}

.competition, .fixture, .venue, .date-time {
    margin: 5px 0;
}

.competition {
    font-size: 12px;
}

	.ticket-section-bottom {
		display: flex;
		flex-direction: row;
	}


.fixture {
    font-weight: 600;
}

.tickets-button-container {
    display: flex;
    justify-content: flex-end; /* Aligns the content to the right */
}
.ticket-info {
    display: flex;
    flex-direction: column;
    align-items: left;
    height: 100%;
}

.popular-ticket-info {
    display: flex;
    flex-direction: column;
    align-items: right;
    height: 100%;
	margin-right: 10px;
}

.availability {
    font-size: smaller;
}

.tickets-button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.tickets-button:hover {
    background-color: #388e3c;
}

/* Widget Review */
.tp-widget-review {
    background-color: #e8f5e9; 
    border-bottom: 1px solid #388e3c;
    box-shadow: 0 1px 0 0 rgba(182, 196, 210, 0.4);
    line-height: 12px;
    
    overflow: hidden;
    padding: 16px;
    position: relative;
    word-wrap: break-word;
}

.tp-widget-review .header {
    color: #191919;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    margin: 0 0 12px;
}
.read-more {
    font-size: 10px;
    font-weight: 600;
}

.tp-widget-review .text {
    color: #191919;
    display: none;
    max-height: 85px;
    overflow: hidden;
    position: relative;
    font-size: 10px;
    text-align: justify;
    text-justify: inter-word;
}

.tp-widget-review .text.showall {
    display: block;
    max-height: none;
}

.tp-widget-review .text .read-more {
    bottom: 0;
    font-size: 0;
    height: 50px;
    position: absolute;
    width: 100%;
}

.tp-widget-review .text .read-more.hide {
    display: none;
}

.tp-widget-review .text:not(.showall)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(248, 249, 250) 85%, rgb(248, 249, 250) 100%);
    bottom: 0;
    content: "";
    font-size: 0;
    height: 50px;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.tp-widget-review .date-and-user-info-wrapper {
    display: flex;
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    line-height: 1.2;
    margin: 8px 8px 6px 0;
    max-width: fit-content;
}

.tp-widget-review .date-and-user-info-wrapper .tp-widget-review__user-name {
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp-widget-review .date-and-user-info-wrapper .tp-widget-review__date {
    flex-shrink: 0;
    margin-left: 3px;
}

.tp-widget-review .stars-and-verified-wrapper {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    max-width: fit-content;
}

.wrapper-reviews {
    max-height: 300px;
    overflow-y: auto;
}

.wrapper-reviews .tp-widget-review .reply {
    background-color: #fff;
    border-left: 3px solid #00b67a;
    border-radius: 2px;
    font-size: 12px;
    height: auto;
    max-width: 75ch;
    margin: 16px 0 12px;
    padding: 24px 8px 8px;
    position: relative;
}

.wrapper-reviews .tp-widget-review .reply .reply-icon {
    left: 8px;
    position: absolute;
    top: 4px;
    width: 12px;
}

.wrapper-reviews .tp-widget-review .reply .header {
    align-items: baseline;
    color: #727273;
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 400;
    margin: -8px 0 4px;
    padding: 0;
}

.wrapper-reviews .tp-widget-review .reply .header strong {
    color: #727273;
    font-weight: 500;
}

.wrapper-reviews .tp-widget-review .reply .header .reply-icon {
    display: none;
}

.wrapper-reviews .tp-widget-review .reply .header--inline {
    margin: 0;
}

.wrapper-reviews .tp-widget-review .reply .header--inline .reply-from {
    flex-grow: unset;
}

.wrapper-reviews .tp-widget-review .reply .header--inline .reply-from,
.wrapper-reviews .tp-widget-review .reply .header--inline .date {
    margin: 0;
}

.wrapper-reviews .tp-widget-review .reply .read-more {
    display: none;
}

.wrapper-reviews .tp-widget-review .reply .date {
    color: #727273;
    flex-grow: 0;
    font-size: 10px;
    line-height: 12px;
    margin: 8px 0 0;
}

.wrapper-reviews .tp-widget-review .reply .reply-from {
    flex-grow: 1;
    margin: 8px 0 0;
}

.wrapper-reviews .tp-widget-review .reply__text {
    display: none;
    height: 27px;
    margin: 0;
    overflow: hidden;
}

.wrapper-reviews .tp-widget-review .reply__text.show-reply {
    display: none;
    height: 100%;
}

.tickets-button.greyed-out {
    background-color: grey;
    cursor: not-allowed;
    opacity: 0.6;
}

.availability {
    font-size: 14px;
    margin-top: 5px;
}

footer {
    background-color: #212529;
    color: white;
    padding: 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    margin: 5px 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-statement {
    margin-top: 10px;
}

.footer-copyright {
    margin-top: 20px;
}







.ticket-availability {
    margin-bottom: 20px;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
	align-items: center;
}

    .filter-left, .filter-right {
        width: 100%;
        margin: 10px 0;
    }

.ticket-box {
    background-color: white;
    padding: 15px;
    flex: 1;
    margin: 10px;
	align-content: center;
}

.btn-ticket {
    padding: 15px 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    margin-right: 5px;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    width: 90px;
}

.btn-ticket:last-child {
    margin-right: 0;
}

.btn-ticket:hover {
    background-color: #45a049;
}


.btn-ticket.active {
    background-color: white;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.checkbox-container {

    display: none;
    align-items: center;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 5px;
}



.inventory-listing {
    background-color: #ffffff;
}

.inventory-listing:hover {
    background-color: aquamarine;
}

.ticket-header-area, .hallmap-header-area {
    background-color: #388e3c;
    color: #ffffff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hallmap-header-area {
    padding: 20px;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

th, td {
    text-align: left;
    padding: 8px;
}

.btn {
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #45a049;
}

.no-tickets {
    text-align: center;
    padding: 20px;
}

.inventory-container {
    overflow-y: scroll;
    max-height: 450px;
    padding: 0;
}

.inventory-item {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #fff;
padding: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
border-left: 5px solid red;
border-bottom: 1px solid #388e3c;
box-sizing: border-box;
}

.inventory-item:hover {
    background-color: #e8f5e9;
}



.fas {
    margin-left: 10px;
}

.ticket-info {
    display: flex;
    align-items: left;
    flex-grow: 1;
    width: 65%;
}

.ticket-section {
    font-size: 14px;
}

.ticket-details {
    font-size: 10px;
}

.ticket-basic-info {
    width: 60%;
}

.ticket-type {
    width: 40%;
}

    .available-tickets, .ticket-price {
        width: 20%;
        text-align: center;
    }

.ticket-price {
    font-weight: bold;
	display: flex;
	flex-direction: column;
}

.small-font {
    font-size: 8px;
}

.range_container {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sliders_control {
    position: relative;
    min-height: 10px;
}

.form_control {
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #635a5a;
}

input[type=range]::-webkit-slider-thumb, input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #388e3c;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb:hover, input[type=range]::-webkit-slider-thumb:active {
    background: #388e3c;
    box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
    -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

input[type="number"] {
    color: #8a8383;
    width: 50px;
    height: 20px;
    font-size: 14px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    background: transparent;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: #C6C6C6;
    pointer-events: none;
}

#fromSlider {
    height: 0;
    z-index: 1;
}

.custom-checkbox {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    line-height: 20px;
    user-select: none;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
}

.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #388e3c;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

#sections-dropdown {
    height: auto;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: white;
}

.ticket-header-left {
    display: flex;
    align-items: center;
}

.ticket-header-left .checkbox-container {
    margin-left: 20px;
    font-size: 0.8em;
}

.ticket-header-right {
    display: flex;
    align-items: center;
}

.ticket-header-right select {
    margin-left: 20px;
}

body {
    font-family: 'Roboto', sans-serif;
}
.header-area, .content {
    font-family: 'Roboto', sans-serif;
}

.buy-tickets-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.buy-tickets-btn:hover {
    background-color: #218838;
}
#ticket-quantity {
    padding: 5px;
    font-size: 16px;
    margin-left: 10px;
}

.form_control {
    margin-top: 10px;
}
.filter-label {
    margin-bottom: 20px;
	align-content: center;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}
.comp-name {
    padding: 0px;
    margin: 0px;
}
.highlighted-block {
    fill: yellow !important;
}
.hall-map {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
#svg-container {
    width: 100%;
    height: 100%;
}
    .zoom-buttons {
        top: auto;
        bottom: 10px;
        left: 10px;
        right: auto;
        display: flex;
        flex-direction: column;
    }
.zoom-buttons button {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    color: green;
    border: 0px;
    font-size: 24px;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 60px;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 20px;
    border: none;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

.modal-body {
    padding: 10px 0;
}

.modal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.modal-image {
    flex: 1;
    margin-right: 20px;
}

.modal-image img {
    width: 100%;
    height: auto;
}

.modal-details {
    flex: 2;
}

.modal-details p {
    margin: 5px 0;
    font-size: 16px;
    color: #555;
}

.modal-details p strong {
    color: #333;
}

.ticket-detail p {
    margin: 5px 0;
    font-size: 16px;
    color: #555;
}

.ticket-detail p strong {
    color: #333;
}

.ticket-detail label {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    display: block;
}

.quantity-select {
    padding: 10px;
    margin-top: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #e8f5e9;
    color: #333;
}

.action-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    width: 100%;
}

.btn-primary {
    background-color: #388e3c;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2c6b2f;
}

	.details {
		font-size: 0.8em;
		display: flex;
		flex-direction: column;
		background-color: #e8f5e9;
		padding: 10px;
	}

	.details-content {
		margin-bottom: 10px;
	}

.left-column, .right-column {
width: 50%;
}

.left-column {
margin-right: 10px;
margin-left: 10px;
}

.right-column {
background-color: #ffffff;
margin-left: 10px;
margin-right: 10px;
}

.hall-map {
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
padding: 20px;
}

.map-image {
width: 100%;
height: auto;
object-fit: cover;
}

.jumbotron {
color: #388e3c;
padding: 10px;
position: relative;
box-sizing: border-box;
width: 100%;
}



.header-content {
display: flex;
	flex-direction: row;
justify-content: space-between;
align-items: center;
}

.fixture-details {
flex: 1;
}

.ticket-availability {
text-align: right;
font-size: 1.5em;
font-weight: bold;
}

.content {
margin-bottom: 20px;
}

.fixture-header, .comp-name {
margin: 0;
color: black;
}

.fixture-header {
    font-weight: bold;
    font-size: 2em;
}

.fixture-info {
font-size: 0.9em;
margin-bottom: 10px;
}

.filter-container {
display: flex;
justify-content: space-between;
width: 100%;
}

.filter-left, .filter-right {
flex: 1;
display: flex;
flex-direction: column;
box-sizing: border-box;
}

.filter-left {
margin-right: 10px;
}

.filter-right {
margin-left: 10px;
}

.ticket-box {
background-color: white;
padding: 15px;
flex: 1;
}

.ticket-box label {
display: block;
margin-bottom: 10px;
font-weight: bold;
color: #45a049;
}

.btn-ticket {
padding: 15px 12px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
margin-right: 5px;
transition: background-color 0.3s, color 0.3s, border 0.3s;
width: 90px;
}

.btn-ticket
{
margin-right: 0;
}

.btn-ticket
{
background-color: #45a049;
}

.btn-ticket.active {
background-color: white;
color: #4CAF50;
border: 2px solid #4CAF50;
}

.checkbox-container {
margin-top: 10px;
display: none;
align-items: center;
}

.checkbox-container input[type="checkbox"] {
margin-right: 5px;
}

.columns {
display: flex;
justify-content: space-between;
width: 100%;
}

.inventory-listing {
background-color: #ffffff;
}

.inventory-listing
{
background-color: aquamarine;
}

.ticket-header-area, .hallmap-header-area {
background-color: #388e3c;
color: #ffffff;
padding: 15px;
display: flex;
justify-content: space-between;
align-items: center;
}


table {
width: 100%;
margin-top: 20px;
border-collapse: collapse;
}

th, td {
text-align: left;
padding: 8px;
}

.btn {
padding: 8px 16px;
background-color: #4CAF50;
color: white;
text-decoration: none;
border: none;
cursor: pointer;
}

.btn
{
background-color: #45a049;
}

.no-tickets {
text-align: center;
padding: 20px;
}

.inventory-container {
overflow-y: scroll;
max-height: 450px;
padding: 0;
}

.inventory-item {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #fff;
padding: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
border-left: 10px solid red;
border-bottom: 1px solid #388e3c;
box-sizing: border-box;
}

.inventory-item:hover
{
background-color: #e8f5e9;
}

.ticket-info p {
margin: 4px 0;
}

.fas {
margin-left: 10px;
}

.ticket-info {
display: flex;

flex-grow: 1;
width: 65%;
}

.ticket-section {
font-size: 14px;
}

.ticket-details {
font-size: 10px;
}

.ticket-basic-info {
width: 60%;
}

.ticket-type {
width: 40%;
}

.available-tickets, .ticket-price {
font-size: 18px;
color: #388e3c;
text-align: left;
width: 17.5%;
}

.ticket-price {
font-weight: bold;
}

.small-font {
font-size: 8px;
}

.range_container {
display: flex;
flex-direction: column;
flex: 1;
}



.custom-checkbox {
position: relative;
padding-left: 35px;
cursor: pointer;
display: inline-block;
line-height: 20px;
user-select: none;
}

.custom-checkbox input[type="checkbox"] {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}

.checkmark {
position: absolute;
top: 0;
left: 0;
height: 20px;
width: 20px;
background-color: #eee;
border-radius: 4px;
}

.custom-checkbox
input ~ .checkmark {
background-color: #ccc;
}

.custom-checkbox input
~ .checkmark {
background-color: #388e3c;
}

.checkmark
{
content: "";
position: absolute;
display: none;
}

.custom-checkbox input
~ .checkmark
{
display: block;
}

.custom-checkbox .checkmark
{
left: 7px;
top: 3px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 3px 3px 0;
transform: rotate(45deg);
}

#sections-dropdown {
padding: 5px 10px;
border-radius: 4px;
border: 1px solid #ccc;
background-color: white;
}

.ticket-header-left {
display: flex;
align-items: center;
}

.ticket-header-left .checkbox-container {
margin-left: 20px;
font-size: 0.8em;
}

.ticket-header-right {
display: flex;
align-items: center;
}

.ticket-header-right select {
margin-left: 20px;
}

@media (max-width: 768px) {
	
	    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .mobile-hide {
        display: none;
    }

    .nav-item {
        width: 100%;
        padding: 10px 0;
        text-align: left;
        margin: 0;
        border-bottom: 1px solid #ccc;
    }

    .hamburger-menu {
        display: block;
    }

    .search-container {
        padding: 10px 0;
    }

    .input-group {
        width: 100%;
        padding: 0 10px;
    }

    #search-results {
        max-width: 90%;
        left: 5%;
        transform: translateX(0);
    }

    .search-button {
        display: none;
    }



    .popular-events, .index-sidebar {
        width: 100%;
        margin: 0;
        padding: 0;
    }

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

    .tp-widget-container, .review-area, .guarantee-content, .review-content {
        text-align: center;
    }
	
	    .zoom-buttons {
display: none;
    }
	
	    .main-content {
        flex-direction: column;
        align-items: center;
    }
	
    .modal-content {
        width: 95%;
    }

    .modal-header h3 {
        font-size: 20px;
    }

    .modal-details p {
        font-size: 14px;
    }

    .btn-primary {
        font-size: 14px;
    }


.details {
    font-size: 0.8em;
    display: flex;
    flex-direction: column;
    background-color: #e8f5e9;
    padding: 10px;
}

.details-content {
    margin-bottom: 10px;
}

    .left-column, .right-column {
        width: 100%;
        margin-top: 20px;
    }

    .hall-map {
        width: 100%;
        padding: 10px;
    }

.map-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

    .jumbotron {
        order: 1;
        width: 100%;
        text-align: center;
    }

.header-content {
    display: flex;
	flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.fixture-details {
    flex: 1;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
}

.ticket-availability {
    text-align: right;
    font-size: 1.5em;
    font-weight: bold;
}

.content {
    margin-bottom: 20px;
}

.fixture-header, .comp-name {
    margin: 0;
    color: black;
}

.fixture-header {
    font-size: 2.0em;
    font-weight: 700;
}

.fixture-info {
    font-size: 0.9em;
    margin-bottom: 10px;
}

    .filter-container {
        order: 2;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 0px;
		align-items: center;
    }

    .filter-left, .filter-right {
        width: 100%;
        margin: 0;
    }

.ticket-box {
    background-color: white;
    padding: 10px;
    flex: 1;
	align-content: center;
	align-items: center;
	
}

.ticket-box label {

    margin-bottom: 10px;
    font-weight: bold;
    color: #45a049;
	align-content: center;
		display: flex;
	flex-wrap: wrap;
}

.btn-ticket {
    padding: 5px 5px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
  
    transition: background-color 0.3s, color 0.3s, border 0.3s;
	width: calc(20% - 8px);

}



.btn-ticket.active {
    background-color: white;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.checkbox-container {

    display: none;
    align-items: center;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 5px;
}

    .columns {
        order: 3;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

.inventory-listing {
    background-color: #ffffff;
}

.inventory-listing:hover {
    background-color: aquamarine;
}

    .ticket-header-area {
		
        flex-direction: row;
        align-items: flex-start;
    }



    .hallmap-header-area {
        flex-direction: row;
        align-items: flex-start;
    }

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

th, td {
    text-align: left;
    padding: 8px;
}

.btn {
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #45a049;
}

.no-tickets {
    text-align: center;
    padding: 20px;
}

    .inventory-container {
        max-height: none;
        width: 100%;
    }




.ticket-info p {
    margin: 4px 0;
}

.fas {
    margin-left: 10px;
}

    .ticket-info {
		display: flex;
		flex-direction: column;
        width: 100%;
        text-align: left;
    }

.ticket-section {
    font-size: 14px;
}

.ticket-details {
    font-size: 10px;
}

.ticket-basic-info {
    width: 60%;
}

.ticket-type {
    width: 40%;
}

    .available-tickets, .ticket-price {
        width: 20%;
        text-align: center;
    }

.ticket-price {
    font-weight: bold;
}

.small-font {
    font-size: 8px;
}

.range_container {
    display: flex;
    flex-direction: column;
    flex: 1;
}



.custom-checkbox {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    line-height: 20px;
    user-select: none;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
}

.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #388e3c;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

#sections-dropdown {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: white;
}

.ticket-header-left {
    display: flex;
    align-items: center;
}

.ticket-header-right {
    display: flex;
    align-items: center;
}

.ticket-header-right select {
    margin-left: 20px;
}
	
	.container {
		padding: 0px;
	}
	
	.index-main-content {
    display: flex;
	flex-direction: column;
    justify-content: space-around;
    padding-top: 20px;
}
	
	.nav-dropdown {
    display: none;
    position: relative;
    top: 10px;
    left: 50px;
    background-color: white;

	z-index: 2000;
}
	.club-blurb {
		display: none;
	}
	
	.club-info {
		display: none;
	}
	
	.club-hero {
		width: 100%;
	}
	
	        .hero-container {
            width: 100%;
            text-align: center;
            padding-top: 10px;
        }
	
	.logo {
		margin-right: 20px;
	}
	
	.checkout-parent {
		display: flex;
		flex-flow: column;
	}
	
	.purchase-details {
		order: 1;
		width: 100%;
		
	}

	
	.customer-details {
		order: 2;
		width: 100%;
		
	}
	
	.customer-guarantee {
		display: none;
	}
	
	}
