
.swiper {
    width: 100%;
    height: 100%;    
	padding: 8px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    padding-bottom: 10px;
}

.swiper-wrapper {
    max-width: var(--size-max-lg);
}

.swiper-slide:hover {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;    
}

.swiper-slide img:hover {
    opacity: 0.9;
}

.swiper-button-custom {
    color: #000;
    padding: 23px;
    background-color: #e9cba1;
    border-radius: 50px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 12px;
}

.swiper-item-content {
    display: flex; 
    flex-direction: column;
    box-shadow: 0px 0px 10px rgba(186, 186, 186, 0.8);   
    min-height: 480px;
    border-radius: 3px;
}

.swiper-item-description {
    font-size: 12px; 
    padding: 8px; 
    text-align: start;
}

.swiper-item-title {
    text-align: start;
    padding: 8px; 
    padding-top: 10px;
}

.swiper-item-info-ticket {
    font-size: 12px;
    color: #888; 
    padding: 8px;   
    text-align: start;
}

.div-ticket-disabled-content {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	margin-top: 15px;
	width: 100%;
	text-align: center;
	justify-content: center;
}

.div-ticket-disabled {
	border-radius: 5px;
	opacity: 0.7;
	font-weight: bold;
	background-color: red;
	padding: 10px;
	padding-left: 50px;
	padding-right: 50px;
	color: white;
}

@media (max-width: 768px){
	.swiper-slide img:hover {
		opacity: 1;
	}	
	
	.swiper-slide:hover {
		opacity: 1;
	}
	
	.swiper-wrapper {
		position: relative;
		width: 100%;
		/* height: 100%; */
		z-index: 1;
		display: flex;
		transition-property: transform;
		box-sizing: content-box;
		flex-direction: column;
	}
	
	.swiper-slide {
		padding-bottom: 20px;
		padding-top: 10px;
	}
	
	.swiper-button-custom {
		display: none;
	}
	
	.swiper-item-content {
		min-height: 50px;
	}
}