/* Define the container as a flex container */

.tribe-venue-details-container {
	display: flex;
	flex-wrap: wrap;
}

/* Set the right-side div to take up 2/3 of the container width */

.tribe-venue-right-side {
	flex: 1;
}

/* Set the left-side div to take up 1/3 of the container width */

.tribe-venue-left-side {
	flex: 2;
}

/* Add some margin between the left-side and right-side divs */

.tribe-venue-left-side,
.tribe-venue-right-side {
	margin: 0 10px;
}
.tribe_venue-template-default #main-content .container {
	width: 95%;
	max-width: none;
}

/* Responsive design for smaller screens */

@media (max-width: 768px) {
	.tribe-venue-right-side,
	.tribe-venue-left-side {
		flex: 1 0 100%;
		/* Set both divs to take up 100% of the container width */
		margin: 10px 0;
		/* Adjust the margin to apply vertically instead of horizontally */
	}
}
.image-carousel {
	position: relative;
padding-bottom:50px;
}
.canvas {
	position: relative;
	text-align: center;
	background-color: #3a3939;
}
.canvas img {
	max-width: 100%;
	max-height: 500px;
	height: auto;
padding: 15px 15px 0 15px;
}
.image-meta {
	background-color: #3a3939;
	color: white;
	font-size: 12px;
	text-align: left;
padding-left: 20px;
}
.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
}
.prev-btn {
	left: 10px;
}
.next-btn {
	right: 10px;
}
.thumbnails {
	display: flex;
	justify-content: center;
	overflow-x: auto;
	gap: 10px;
	margin-bottom: 10px;
	white-space: nowrap;
	flex-wrap: nowrap;
	background-color: #3a3939;
}
.all-google-images {
	display: flex;
	justify-content: center;
	flex-grow: 1;
	max-height: 75px;
    overflow: hidden;
}
.thumbnails .google-image {
	cursor: pointer;
	flex: 1;
	max-width: 100px;
}
.thumbnails img {
	width: 100%;
	height: auto;
	opacity: 0.75;
}
.thumbnails img.selected {
	opacity: 1;
}

.thumbnails .google-image-meta {
	display: none;
}

.tribe-venue-editorial-summary {
	padding-top: 0;
	margin-bottom: 30px;
	padding-right: 10px;
	padding-left: 10px;
	font-style: italic;
	display: block;
}
.small-date {
	font-size: 12px;
}
.evd-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba( 0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 9999;
    text-align: center;

}
.evd-popup .popupData {
    width: 100%;
    line-height: 1.75em;
}
.evd-popup-close {
    position: absolute;
    top: 80px;
    right: 80px;
    cursor: pointer;
    font-size: 25px;
}
.evd-popup-buttons {
    padding: 30px 0;
}