html,body{
	padding: 0;
	margin: 0;
	background: #FFF;
	font-family: Arial;
	color: #000;
}
.header{
	width: 100%;
	padding: 1em;
}

.poster{
	width: 100%;
	display: flex;
}
.poster img{
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}
.logo{
 	width: 100px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    margin-top: -2em;
    border: solid 3px #FFF;
    position: relative;
}
.red{
	color: red;
}
.extras{
	font-size: 14px;
}
.logo img{
	width: 100%;

}
.items h4{
	font-weight: 600;
}
.items .card-title{
	font-weight: normal;
}
.card{
	margin: 0.5em 0;
}
#pedido ul, #pago ul{
	padding: 0;
}
#pedido ul li, #pago ul li{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 1em 0;
}
#pedido ul li:first-child, #pago ul li:first-child{
	margin-top: 0;
}
#pedido ul li h6, #pago ul li h6{
	margin: 0;
}
#pedido ul li div, #pago ul li div{
	display: flex;
	align-items: center;
}
#pedido ul li button, #pago ul li button{
	margin-left: 0.5em;
}
#footer{
	border-top: solid 1px #FFF;
	text-align: center;
}
#footer p{
	padding: 10px;
	margin: 0;
}
#footer a{
	color: #000 !important;
}
#res{
	display: none;
}
.list{
	position: fixed;
    bottom: 1em;
    right: 1em;
    z-index: 10;
    background: red;
    color: #FFF !important;
    width: 70px;
    height: 70px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.list i{
	font-size: 22px;
}
.chat{
	position: fixed;
    bottom: 1em;
    right: 1em;
    z-index: 10;
    background: red;
    color: #FFF !important;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.chat i{
	font-size: 22px;
}
.modal-body{
	overflow-y: auto;
    max-height: 80vh;
}
@media only screen and (max-width: 800px) {
	.header{
		padding: 0;
	}
}

#carga{
	background-color: rgba(255,255,255,0.5);
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}
#alert{
	z-index: 10000;
}
.alert{
	width: 400px;
	margin: auto auto;
	z-index: 10001;
}
.pac-container {
    z-index: 1051 !important; /* Usa un valor mayor al z-index de tu modal */
}
/*///////////////////////////////SWIPER////////////////////////////////////*/

.swiper {
	width: 100%;
	height: 100%;
	overflow: hidden;
	padding-bottom: 3em;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mySwiper{
	visibility: hidden;
}
@media only screen and (max-width: 800px) {
	#menu{
		display: none;
	}
	.swiper{
		height: 100%;
	}
	.mySwiper{
		visibility: visible;
	}
}