@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('colors.css');
*{
	padding: 0px ;
	margin: 0px ;
}
html{
	scroll-behavior: smooth ;
}
#countdown{
	background-color: var(--primary-color) ;
	font-size: 20px ;
	padding: 10px 20px ;
	text-align: center ;
	color: #FFFFFF ;
	font-weight: 800 ;
	letter-spacing: 1.5px ;
}
body,button,select,input,textarea{
	font-family: 'Montserrat', sans-serif ;
	color: #282828 ;
	font-size: 16px ;
}
body{
	//background-color: #F4F5FA ;
	background-color: #F2F2F2 ;
	overflow-x: hidden ;
	background-image: url("../images/wallpaper.png") ;
}
.container{
	width: calc(100% - 60px) ;
	max-width: 1200px ;	
	margin: 0px auto 0px auto ;
}
header{
	padding: 20px 0px 20px 0px ;
	display: flex ;
	align-items: center ;
	justify-content: space-between ;
	gap: 20px ;
}
header .logo img{
	width: 175px ;
}
header .menu ul{
	display: flex ;
	align-items: center ;
	gap: 20px ;
}
header .menu ul li{
	list-style: none ;
}
header .menu ul li a{
	text-decoration: none ;
	color: rgba( 0 , 0 , 0 , 0.75) ;
	position: relative ;
	transition-property: color ;
	transition-duration: 0.25s ;
}
header .menu ul li a:hover{
	color: #282828 ;
}
header .menu ul li a.selected{
	//color: #8792C7 ;
	color: var(--primary-color) ;
}
header .menu ul li a::before{
	content: "" ;
	display: block ;
	//background-color: #8792C7 ;
	background-color: var(--primary-color) ;
	width: 0px ;
	height: 3px ;
	position: absolute ;
	bottom: -5px ;
	left: 0px ;
	border-radius: 5px ;
	transition-property: width;
	transition-duration: 0.25s;
	left: 0px;
	right: 0px;
	margin: 0px auto 0px auto;
}
header .menu ul li a.selected::before{
	width: calc(100% - 10px) ;
}
header .buttons{
	display: flex ;
	align-items: center ;
	gap: 20px ;
}
header .buttons a{
	text-decoration: none ;
}
header .buttons button,
header .buttons a{
	border-radius: 25px ;
	display: flex ;
	align-items: center ;
	justify-content: center ;
	border: 0px ;
	background-color: transparent ;
}
header .buttons button.btn-svg,
header .buttons a.btn-svg{
	height: 30px ;
	width: 30px ;
	padding: 3.5px ;
	transition-property: padding, background-color ;
	transition-duration: 0.25s ;
}
header .buttons button.btn-svg:hover,
header .buttons a.btn-svg:hover,
.container-chat .button-chat:hover{
	cursor: pointer ;
	padding: 7.5px ;
	//background-color: #8792C7 ;
	background-color: var(--primary-color) ;
}
header .buttons button.btn-svg svg,
header .buttons a.btn-svg svg{
	width: 100% ;
	height: 100% ;
	//fill: #8792C7 ;
	fill: var(--primary-color) ;
	transition-property: fill ;
	transition-duration: 0.25s ;
}
header .buttons button.btn-svg:hover svg,
header .buttons a.btn-svg:hover svg,
.container-chat .button-chat:hover svg{
	fill: #E5E7F3 ;
}
header .buttons button.btn-normal,
header .buttons a.btn-normal{
	padding: 5px 10px 5px 10px ;
	//border: 1.5px solid #8792C7 ;
	border: 1.5px solid var(--primary-color);
	//color: #8792C7 ;
	color: var(--primary-color) ;
	//background-color: #E5E7F3 ;
	font-weight: 400 ;
	transition-property: background-color, color;
	transition-duration: 0.25s ;
}
header .buttons button.btn-normal:hover,
header .buttons a.btn-normal:hover{
	cursor: pointer ;
	color: #E5E7F3 ;
	//background-color: #8792C7 ;
	background-color: var(--primary-color);
}
header .buttons .button-menu{
	display: none ;
}
.slide{
	width: 100% ;
	position: relative ;
	overflow: hidden ;
	border-radius: 20px ;
}
.slide .bg-img{
	display: block ;
	object-fit: cover ;
	object-position: center ;
	width: 100% ;
	height: 100% ;
	position: absolute ;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1 ;
}
.slide .text{
	display: flex ;
	flex-direction: column ;
	align-items: left ;
	justify-content: center ;
	gap: 20px ;
	width: 100% ;
	height: 100% ;
	padding: 60px ;
	box-sizing: border-box ;
	background-color: rgba( 0 , 0 , 0 , 0.35) ;
	color: #FFFFFF ;
}
.slide .text h1,
.slide .text p{
	max-width: 700px ;
}
.slide .text p{
	font-size: 14px ;
}
.slide .text h1{
	margin-top: 120px ;
	font-size: 60px ;
}
.slide .text a{
	padding: 10px 20px ;
	border-radius: 50px ;
	border: 0px ;
	background-color: #FFFFFF ;
	max-width: 150px ;
	transition-property: transform ;
	transition-duration: 0.25s ;
	text-decoration: none ;
	color: #282828 ;
	text-align: center ;
}
.slide .text a:hover{
	cursor: pointer ;
	transform: scale(1.1) ;
}
#order{
	margin-top: 40px ;
	margin-bottom: 40px ;
}
section h2{
	font-size: 24px ;
	color: rgba( 0 , 0 , 0 , 0.5) ;
	font-weight: 800 ;
	margin-bottom: 15px ;
}
section > p.text{
	max-width: 700px ;
	margin-bottom: 20px ;
}
#order .tab-bar .bars{
	display: flex ;
	//border-bottom: 1.5px solid #8792C7 ;
	border-bottom: 1.5px solid var(--primary-color);
}
#order .tab-bar .bars button{
	border-radius: 10px 10px 0px 0px ;
	border: 1.5px solid transparent;
	border-bottom: 0px ;
	background-color: transparent ;
	padding: 5px 10px 5px 10px ;
	color: rgba(0,0,0,0.75) ;
	transition-property: color ;
	transition-duration: 0.25s ;
	position: relative ;
}
#order .tab-bar .bars button:hover{
	cursor: pointer ;
	color: #282828 ;
}
#order .tab-bar .bars button.selected{
	//border-color: #8792C7 ;
	//color: #8792C7 ;
	border-color: var(--primary-color);
	color: var(--primary-color);
}
#order .tab-bar .bars button.selected::after{
	content: "" ;
	position: absolute ;
	display: block ;
	//background-color: #F4F5FA ;
	background-color: #F2F2F2 ;
	height: 5px ;
	width: 100% ;
	left: 0px ;
	bottom: -1.5px ;
}
#order .tab-bar .containers > form{
	display: none ;
	margin-top: 10px ;
}
#order .tab-bar .containers > form.selected{
	display: block ;
}
.input-box{
	position: relative ;
	padding-top: 7.5px ;
}
.input-box input,
.input-box select{
	display: block ;
	padding: 7.5px 15px ;
	width: 100% ;
	border-radius: 20px ;
	border: 0px ;
	outline: none ;
	box-sizing: border-box ;
	background-color: transparent ;
	//border: 1.5px solid #8792C7 ;
	border: 1.5px solid var(--primary-color);
}
.input-box label{
	font-size: 12px ;
	position: absolute ;
	top: 0px ;
	left: 10px ;
	//background-color: #F4F5FA ;
	background-color: #F2F2F2 ;
	padding: 0px 5px 0px 5px ;
	//color: #8792C7 ;
	color: var(--primary-color);
	z-index: 1 ;
}
.input-submit{
	display: flex ;
	justify-content: center ;
}
.input-submit input{
	margin-top: 20px ;
	display: block ;
	padding: 7.5px 15px ;
	width: 33.33% ;
	min-width: 200px ;
	//color: #8792C7 ;
	color: var(--primary-color) ;
	border-radius: 20px ;
	border: 0px ;
	outline: none ;
	box-sizing: border-box ;
	//background-color: #E5E7F3 ;
	background-color: var(--primary-light-color);
	font-weight: 400 ;
	//border: 1.5px solid #8792C7 ;
	border: 1.5px solid var(--primary-color) ;
	transition-property: background-color, color;
	transition-duration: 0.25s ;
}
.input-submit input:hover{
	cursor: pointer ;
	color: #E5E7F3 ;
	//background-color: #8792C7 ;
	background-color: var(--primary-color) ;
}
.grid-c3,
.grid-c4{
	display: grid ;;
	grid-gap: 20px ;
}
.grid-c3{
	grid-template-columns: repeat( 3 , 1fr ) 
}
.grid-c4{
	grid-template-columns: repeat( 4 , 1fr ) 
}
#order .grid-c3{
	margin-bottom: 10px ;
}
.none-account,
.login-alert{
	display: block ;
	font-size: 14px ;
	text-align: center ;
}
.none-account{
	text-decoration: none ;
	color: rgba(0 , 0 , 0, 0.5) ;
	transition-property: color ;
	transition-duration: 0.25s ;
}
.none-account.inactive,
.input-submit .inactive{
	display: none ;
}
.none-account:hover{
	cursor: pointer ;
	color: rgba(0 , 0 , 0, 0.75) ;
}
.login-alert.error{
	color: #BF9000 ;
}
.login-alert.success{
	color: #548235 ;
}
footer{
	padding: 40px 0px 20px 0px ;
	background-color: #FFFFFF ;
	margin-top: 60px ;
	border-top: 1px solid #E8E8E8 ;
}
footer .footer-content{
	display: grid ;
	grid-template-columns: repeat(3, 1fr) ;
	gap: 40px ;
	max-width: 1200px ;
	margin: 0 auto ;
	padding: 0 30px ;
}
footer .footer-column h4{
	font-size: 16px ;
	font-weight: 700 ;
	color: var(--primary-color) ;
	margin-bottom: 15px ;
}
footer .footer-column ul{
	list-style: none ;
	padding: 0 ;
	margin: 0 ;
}
footer .footer-column ul li{
	margin-bottom: 10px ;
}
footer .footer-column ul li a{
	text-decoration: none ;
	color: #666 ;
	font-size: 14px ;
	transition: color 0.25s ;
}
footer .footer-column ul li a:hover{
	color: var(--primary-color) ;
}
footer .footer-address{
	font-size: 14px ;
	color: #666 ;
	margin-top: 15px ;
	line-height: 1.6 ;
}
footer .payment-logos{
	display: flex ;
	flex-direction: column ;
	gap: 15px ;
	margin-bottom: 15px ;
}
footer .payment-cards,
footer .payment-secure{
	display: flex ;
	gap: 15px ;
	align-items: center ;
	flex-wrap: wrap ;
}
footer .payment-cards img{
	height: 40px ;
	width: auto ;
}
footer .payment-secure img{
	height: 30px ;
	width: auto ;
}
footer .footer-secure-text{
	font-size: 13px ;
	color: #666 ;
	margin-top: 10px ;
}
footer .footer-bottom{
	text-align: center ;
	padding-top: 20px ;
	margin-top: 30px ;
	border-top: 1px solid #E8E8E8 ;
	opacity: 0.5 ;
	font-size: 14px ;
}
footer .footer-bottom p{
	margin: 0 ;
	color: #666 ;
}
@media(max-width: 900px){
	footer .footer-content{
		grid-template-columns: repeat(2, 1fr) ;
		gap: 30px ;
	}
	footer .footer-column:last-child{
		grid-column: 1 / -1 ;
	}
}
@media(max-width: 600px){
	footer{
		padding: 30px 0px 15px 0px ;
	}
	footer .footer-content{
		grid-template-columns: 1fr ;
		gap: 25px ;
		padding: 0 20px ;
	}
	footer .footer-column:last-child{
		grid-column: auto ;
	}
	footer .payment-cards,
	footer .payment-secure{
		justify-content: center ;
	}
	footer .footer-secure-text{
		text-align: center ;
	}
}
.list-dishes .none-items{
	display: flex ;
	align-items: center ;
	justify-content: center ;
	width: 100% ;
	border-radius: 20px ;
	background-color: #FFFFFF ;
	height: 100px ;
	padding: 0px 20px 0px 20px ;
	text-align: center ;
	transition-property: height ;
	transition-duration: 0.25s ;
	overflow: hidden ;
	position: relative ;
	z-index: 2 ;
	opacity: 0.85 ;
}
.list-dishes .none-items.inactive{
	height: 0px ;
}
.list-dishes article{
	display: block ;
	width: 100% ;
	border-radius: 20px ;
	background-color: #FFFFFF ;
	overflow: hidden ;
	position: relative ;
	transition-property: transform ;
	transition-duration: 0.25s ;
}
.list-dishes article:hover{
	cursor: pointer ;
	transform: scale(1.05) ;
}
.list-dishes article span.oferted{
	position: absolute ;
	top: 5px ;
	left: 5px ;
	border-radius: 15px ;
	background-color: #548235 ;
	color: #FFFFFF ;
	z-index: 9 ;
	padding: 5px 20px ;
	transition-property: transform , background-color ;
	transition-duration: 0.25s ;
}
.list-dishes article:hover span.oferted{
	transform: scale(0.8) ;
}
.list-dishes article .image{
	width: 100% ;
	height: 200px ;
	overflow: hidden ;
	position: relative ;
}
.list-dishes article .image::after{
	content: "+" ;
	display: flex ;
	align-items: center ;
	justify-content: center ;
	position: absolute ;
	width: 35px ;
	height: 35px ;
	background-color: rgba(255,255,255,0.9) ;
	border-radius: 50% ;
	bottom: 20px ;
	right: 20px ;
	font-size: 30px ;
	font-weight: 800 ;
	//color: #8792C7;
	color: var(--primary-color) ;
	transition-property: transform , background-color ;
	transition-duration: 0.25s ;
}
.list-dishes article:hover .image::after{
	transform: scale(1.2) ;
	background-color: #FFFFFF ;
}
.list-dishes article .image img{
	width: 100% ;
	height: 100% ;
	object-fit: cover ;
	object-position: center ;
}
.list-dishes article .information{
	display: flex ;
	padding: 25px 20px 25px 20px ;
	text-align: center ;
	justify-content: center ;
	align-items: center ;
	gap: 10px ;
	flex-direction: column ;
	height: calc( 100% - 200px ) ;
	box-sizing: border-box ;
}
.list-dishes article .information .name{
	font-size: 18px ;
	font-weight: 800 ;
	opacity: 0.75 ;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	overflow: hidden;
}
.list-dishes article .information .description{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	opacity: 0.5 ;
}
.list-dishes article .information .price{
	font-size: 22px ;
	font-weight: 800 ;
	opacity: 0.75 ;
	//color: #8792C7 ;
	color: var(--primary-color) ;
}
.list-dishes article button{
	width: 100% ;
	height: 100% ;
	background-color: transparent ;
	position: absolute ;
	top: 0px ;
	left: 0px ;
	border: 0px ;
}
.list-dishes article button:hover{
	cursor: pointer ;
}
.list-dishes-companies > .input-box{
	width: calc(33.33% - 40px) ;
	margin: 0px auto 20px auto ;
}
section.inactive{
	display: none ;
}
.loader-container{
	display: flex ;
	align-items: center ;
	justify-content: center ;
	width: 100% ;
	height: 0px ;
	top: 0 ;
	left: 0 ;
	box-sizing: border-box ;
	opacity: 0 ;
	visibility: hidden ;
	transition-property: opacity, visibility, height ;
	transition-duration: 0.25s ;
}
.loader-container.active{
	opacity: 1 ;
	visibility: visible ;
	height: 200px ;
}
.loader-container .loader{
	position: relative ;
	width: 120px ;
	height: 120px ;
}
.loader-container .loader span{
	position: absolute ;
	top: 0 ;
	left: 0 ;
	width: 100% ;
	height: 100% ;
	transform: rotate(calc(18deg * var(--i)));
}
.loader-container .loader span:before{
	content:"";
	position: absolute ;
	top: 0 ;
	left: 0 ;
	width: 15px ;
	height: 15px ;
	background-color: rgba(0,0,0,0.5);
	border-radius: 50% ;
	box-shadow:
		0 0 10px #000000,
		0 0 20px #000000,
		0 0 40px #000000,
		0 0 60px #000000,
		0 0 80px #000000,
		0 0 100px #000000,
	;
	animation: loader_animate 2s linear infinite ;
	animation-delay: calc(0.1s * var(--i));
}
@keyframes loader_animate{
	0%{
		transform: scale(1);
	}
	80% , 100%{
		transform: scale(0);
	}
}
section.healthy,
section.precooked{
	position: relative ;
	padding: 40px 0px 40px 0px ;
	margin: 100px 0px 100px 0px ;
	border-top: 2.5px solid ;
	border-bottom: 2.5px solid ;
}
section.healthy{
	border-color: #7BBF47 ;
}
section.precooked{
	border-color: #FFE699 ;
}
section.healthy::before,
section.precooked::before{
	content: "" ;
	display: block ;
	height: 100% ;
	width: 200vw ;
	top: -2.5px ;
	left: -40vw ;
	position: absolute ;
	z-index: -1 ;
	border-top: 2.5px solid ;
	border-bottom: 2.5px solid ;
}
section.precooked::before{
	background-color: #FFFFEB ;
	border-color: #FFE699 ;
}
section.healthy::before{
	background-color: #F8FFF5 ;
	border-color: #7BBF47 ;
}
section.healthy::after,
section.precooked::after{
	content: "" ;
	display: block ;
	position: absolute ;
	height: calc(100% - 40px) ;
	max-height: 400px ;
	width: 100% ;
	background-size: contain ;
	background-position: right ;
	background-repeat: no-repeat ;
	top: 20px ;
	right: 0 ;
	z-index: -1 ;
}
section.precooked::after{
	background-image: url("../images/precooked-food.png") ;
}
section.healthy::after{
	background-image: url("../images/healthy-food.png") ;
}
section.healthy h2,
section.precooked h2{
	font-size: 32px ;
	opacity: 1 ;
	color: rgba(0,0,0,0.55) ;
}
section.healthy h2 span,
section.precooked h2 span{
	margin: -25px 0px -25px 0px ;
	display: block ;
	font-family: 'Pacifico', cursive ;
	font-weight: 400;
	font-style: normal;
	font-size: 40px;
}
section.precooked h2 span{
	color: #FFD966 ;
}
section.healthy h2 span{
	color: #7BBF47;
}
section.healthy .grid-c4,
section.precooked .grid-c4{
	position: relative ;
	z-index: 2 ;
}
section.healthy > .text,
section.precooked > .text{
	width: calc(100% - 200px) ;
}
section.precooked article .image::after,
section.precooked article .information .name,
section.precooked article .information .price{
	color: #FFD966 ;
}
section.healthy article .image::after,
section.healthy article .information .name,
section.healthy article .information .price{
	color: #7BBF47 ;
}
.container-modal{
	display: flex ;
	align-items: center ;
	justify-content: center ;
	position: fixed ;
	top: 0px ;
	left: 0px ;
	width: 100vw ;
	height: 100dvh ;
	background-color: rgba(0,0,0,0.75);
	padding: 30px ;
	box-sizing: border-box ;
	z-index: 99999999 ;
	opacity: 0 ;
	visibility: hidden ;
	transition-property: opacity, visibility ;
	transition-duration: 0.25s ;
}
.container-modal.active{
	opacity: 1 ;
	visibility: visible ;
}
.container-modal > div{
	background-color: #FFFFFF ;
	border-radius: 20px ;
	padding: 20px ;
	box-sizing: border-box ;
	max-height: calc(100dvh - 40px) ;
	max-width: 1200px ;
	overflow-y: scroll ;
}
.container-modal.dish .information{
	display: grid ;	
	grid-template-columns: 375px 1fr ;
	grid-gap: 20px ;
	align-items: center ;
}
.container-modal.dish .information img{
	border-radius: 20px ;
	width: 375px ;
	height: 375px ;
	object-fit: cover ;
	object-position: center ;
}
.container-modal.dish .information .title{
	font-size: 22px ;
	font-weight: 800 ;
	opacity: 0.5 ;
}
.container-modal.dish .information .restaurant{
	margin: 10px 0px 10px 0px ;
	opacity: 0.65 ;
}
.container-modal.dish .information .text{
	font-size: 14px ;
	opacity: 0.75 ;
}
.container-modal.dish .information .price{
	margin: 10px 0px 10px 0px;
	font-size: 18px;
	font-weight: 800;
	opacity: 0.5;
}
.container-modal.dish .information .duration{
	display: flex ;
	align-items: center ;
	gap: 10px ;
	margin-bottom: 10px ;
}
.container-modal.dish .information .duration svg{
	fill: #282828 ;
	height: 20px ;
	opacity: 0.5 ;
}
.container-modal.dish .ingredients{
	margin-top: 10px ;
}
.container-modal.dish .ingredients,
.container-modal.cart table,
.container-modal.dish .ingredients table,
.container-modal.dish .ingredients tbody,
.container-modal.cart tbody,
.container-modal.cart tr,
.container-modal.dish .ingredients tr{
	width: 100% ;
}
.container-modal.dish .ingredients tr{
	display: grid ;
	grid-template-columns: 1fr 150px ;
	grid-gap: 20px ;
	padding: 10px 0px 10px 0px ;
}
.container-modal.dish .ingredients .buttons{
	display: flex ;
	align-items: center ;
	justify-content: end ;
}
.container-modal.dish .ingredients .buttons button{
	display: flex ;
	align-items: center ;
	justify-content: center ;
	width: 30px ;
	height: 30px ;
	border-radius: 50% ;
	border: 0px ;
	font-size: 18px ;
	font-weight: 800 ;
	color: #FFFFFF ;
	transition-property: transform ;
	transition-duration: 0.25s ;
}
.container-modal.dish .ingredients .buttons button:hover{
	transform: scale(1.1) ;
	cursor: pointer ;
}
.container-modal.dish .ingredients .buttons button.minus{
	background-color: #BF9000 ;
}
.container-modal.dish .ingredients .buttons button.plus{
	background-color: #548235 ;
}
.container-modal.dish .ingredients .buttons input{
	text-align: center ;
	outline: none ;
	background-color: transparent ;
	border: 0px ;
}
.container-modal.dish .btn-add-new-item{
	display: block ;
	margin-top: 20px ;
	padding: 7.5px 15px ;
	border-radius: 20px ;
	width: 100% ;
	border: 0px ;
	//background-color: #548235 ;
	background-color: var(--primary-color) ;
	color: #FFFFFF ;
	opacity: 0.8 ;
	transition-property: opacity ;
	transition-duration: 0.25s ;
}
.container-modal.dish .btn-add-new-item:hover{
	cursor: pointer ;
	opacity: 1 ;
}
.container-modal.dish .subtitle{
	font-size: 18px ;
    font-weight: 800;
    opacity: 0.5;
	margin-top: 10px ;
}
.container-modal.dish .input-box > label,
.container-modal.cart .input-box > label{
	background-color: #FFFFFF ;
}
.container-modal.cart .title{
	font-size: 22px ;
	font-weight: 800 ;
	opacity: 0.6 ;
	text-align: center ;
	margin-bottom: 20px ;
}
.container-modal.cart table{
	margin-bottom: 20px ;
}
.container-modal.cart .price-text{
	margin-bottom: 5px ;
	font-weight: 800 ;
	opacity: 0.5 ;
	display: flex ;
	align-items: center ;
	justify-content: space-between ;
}
.container-modal.cart .price-text span{
	font-size: 20px ;
}
.container-modal.cart .price-text.total{
	margin-bottom: 10px ;
}
.container-modal.cart .alert{
	margin-top: 10px ;
	color: #BF9000 ;
	font-size: 14px ;
	text-align: center ;
}
.container-modal.cart .checkbox{
	display: flex ;
	align-items: center ;
	justify-content: center ;
	gap: 15px ;
	margin: 10px 0px 10px 0px ;
}
.container-modal.cart .checkbox input:hover{
	cursor: pointer ;
}
.container-modal.success-order > div{
	overflow: hidden ;
}
.container-modal.success-order > div{
	display: flex ;
	flex-direction: column ;
	align-items: center ;
	max-width: 450px ;
	text-align: center ;
}
.container-modal.success-order p{
	font-size: 14px ;
	margin-bottom: 10px ;
}
.container-modal.success-order .title{
	font-size: 28px ;
	font-weight: 800 ;
	opacity: 0.6 ;
	margin-bottom: 10px ;
}
.container-modal.success-order svg{
	width: 100px ;
	margin-bottom: 20px ;
	fill: #8792C7 ;
}
.side-dishes{
	text-align: center ;
	padding: 40px 0px 40px 0px ;
	margin: 100px 0px 100px 0px ;
}
.side-dishes .subtitle{
	font-size: 18px ;
	opacity: 0.75 ;
}
.side-dishes .title{
	margin: 0px 0px 20px 0px ;
	font-size: 28px ;
	font-weight: 800 ;
	opacity: 0.65 ;
}
.side-dishes .title span{
	font-family: 'Pacifico', cursive ;
	font-weight: 400;
	font-style: normal;
	font-size: 40px;
	//color: #8792C7 ;
	color: #548235 ;
}
.side-dishes a{
	text-decoration: none ;
	border-radius: 20px ;
	display: block;
	padding: 7.5px 15px;
	margin: 0px auto 0px auto ;
	width: 200px;
	//color: #8792C7;
	color: #548235 ;
	box-sizing: border-box;
	//background-color: #E5E7F3;
	background-color: #F8FFF5 ;
	font-weight: 400;
	//border: 1.5px solid #8792C7;
	border: 1.5px solid #548235 ;
	transition-property: background-color, color;
	transition-duration: 0.25s;
}
.side-dishes a:hover{
	cursor: pointer ;
	//background-color: #8792C7;
	background-color: var(--primary-color) ;
	color: #E5E7F3;
}
.container-modal.cart table{
	display: block ;
	overflow-x: scroll ;
	border-collapse: collapse;
}
.container-modal.cart tr:nth-child(even){
	background-color: var(--primary-light-color);
}
.container-modal.cart th,
.container-modal.cart td{
	padding: 5px 10px 5px 10px ;
	text-align: center ;
}
.container-modal.cart th{
	background-color: var(--primary-color) ;
	color: #FFFFFF ;
}
.container-modal.cart table button{
	background-color: transparent ;
	border: 0px ;
	color: #C00000 ;
	font-weight: 800 ;
	opacity: 0.5 ;
	transition-property: opacity ;
	transition-duration: 0.25s ;
}
.container-modal.cart table button:hover{
	cursor: pointer ;
	opacity: 1 ;
}
.loading-general{
	position: fixed;
	width: 100vw;
	height: 100dvh;
	z-index: 9999999;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0 ;
	visibility: hidden ;
	transition-property: opacity, visibility ;
	transition-duration: 0.25s ;
}
.loading-general.active,
.loading-general.active .loader-container{
	opacity: 1 ;
	visibility: visible ;
}
.input-submit input.btn-logout{
	display: none ;
}
.input-submit input.btn-logout.active{
	display: block ;
}
header .buttons .button-cart.scrollable,
.container-chat .button-chat{
	height: 40px ;
	width: 40px ;
	position: fixed ;
	z-index: 999 ;
	background-color: #FFFFFF;
	padding: 7.5px ;
	right: 25px ;
	animation: show_button_cart 1s ease ;
	box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.15);
}
header .buttons .button-cart.scrollable{
	bottom: 75px ;
}
.container-chat .button-chat{
	bottom: 25px ;
	transition-property: padding, background-color;
	transition-duration: 0.25s;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0px;
}
.container-chat .button-chat svg{
	width: 100%;
	height: 100%;
	fill: var(--primary-color);
	transition-property: fill;
	transition-duration: 0.25s;
}
header .buttons .button-cart.inscrollable{
	right: -40px ;
	animation: hidden_button_cart 1s ease ;
}
header .buttons .button-cart{
	position: relative ;
}
header .buttons .button-cart span{
	position: absolute ;
	background-color: var(--primary-color) ;
	color: #FFFFFF ;
	font-weight: 800 ;
	display: flex ;
	align-items: center ;
	justify-content: center ;
	width: 20px ;
	height: 20px ;
	border-radius: 50% ;
	right: -7.5px ;
	top: -9px ;
	transition-property: right, top ;
	transition-duration: 0.25s ;
}
header .buttons .button-cart:hover span{
	right: -10px ;
	top: -15px ;
}
.container-chat > div{
	opacity: 0 ;
	visibility: hidden ;
	position: fixed ;
	background-color: #FFF ;
	border-radius: 5px ;
	overflow: hidden ;
	bottom: 25px ;
	right: 80px ;
	z-index: 999 ;
	width: calc(100vw - 120px ) ;
	max-width: 250px ;
	box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.15);
	transition-property: opacity, visibility;
	transition-duration: 0.5s ;
}
.container-chat > div.visible{
	opacity: 1 ;
	visibility: visible ;
}
.container-chat > div .name{
	display: flex ;
	align-items: center ;
	justify-content: space-between ;
	padding: 5px 10px 5px 10px ;
	background-color: var(--primary-color) ;
	color: #FFFFFF ;
}
.container-chat > div .name a{
	display: block ;
	height: 17.5px ;
	width: 17.5px ;
}
.container-chat > div .name a svg{
	fill: #FFFFFF ;
	transition-property: opacity ;
	transition-duration: 0.25s ;
}
.container-chat > div .name a:hover svg{
	cursor: pointer ;
	opacity: 0.75 ;
}
.container-chat > div .scrollable{
	height: 250px ;
	overflow-y: scroll ;
	padding: 5px ;
	box-sizing: border-box ;
}
.container-chat > div .chats{
	display: flex ;
	justify-content: end ;
	flex-direction: column ;
	gap: 5px ;
	min-height: 100% ;
}
.container-chat > div .chats > div > p{
	max-width: 65% ;
	padding: 5px 7.5px ;
	font-size: 14px ;
}
.container-chat > div .chats .received{
	display: flex ;
	justify-content: start ;
}
.container-chat > div .chats .received p{
	border-radius: 10px 10px 10px 0px;
	background-color: #E5E7F3 ;
}
.container-chat > div .chats .sent{
	display: flex ;
	justify-content: end ;
}
.container-chat > div .chats .sent p{
	border-radius: 10px 10px 0px 10px;
	background-color: var(--primary-color) ;
	color: #FFFFFF ;
}
.container-chat > div .input-box-chat{
	padding: 5px ;
	display: grid ;
	grid-template-columns: 1fr 25px ;
	gap: 5px ;
}
.container-chat > div .input-box-chat input{
	border-radius: 5px ;
	border: 1px solid rgba(0,0,0,0.5);
	padding: 2.5px 5px;
	width: 100% ;
	outline: none ;
	box-sizing: border-box ;
	font-size: 14px ;
}
.container-chat > div .input-box-chat button{
	display: flex ;
	align-items: center ;
	justify-content: center ;
	border-radius: 5px ;
	padding: 2.5px ;
	box-sizing: border-box ;
	border: 0px ;
	background-color: var(--primary-color) ;
	transition-duration: 0.25s ;
	transition-property: transform ;
}
.container-chat > div .input-box-chat button:hover{
	cursor: pointer ;
	transform: scale(1.1);
}
.container-chat > div .input-box-chat button svg{
	width: 100% ;
	height: 100% ;
	fill: #FFFFFF ;
}
.container-chat > div .scrollable::-webkit-scrollbar {
	width: 8px;
}
.container-chat > div .scrollable::-webkit-scrollbar-track {
	background: transparent ;
}
.container-chat > div .scrollable::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.2) ;
	border-radius: 4px ;
	transition: background-color 0.3s ;
}
.container-chat > div .scrollable::-webkit-scrollbar-thumb:hover {
	background-color: rgba(0, 0, 0, 0.4) ;
}
.container-chat > div .scrollable {
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.2) transparent ;
}
@keyframes show_button_cart{
	0%{
		right: -40px ;
	}
	75%{
		right: 35px ;
	}
	100%{
		right: 25px ;
	}
}
@keyframes hidden_button_cart{
	0%{
		right: 25px ;
	}
	100%{
		right: -40px ;
	}
}
@media(max-width: 1200px){
	.grid-c4{
		grid-template-columns: repeat( 3 , 1fr ) ;
	}
	section.healthy::after,
	section.precooked::after{
		max-width: 200px ;
	}
}
@media(max-width: 900px){
	.grid-c4{
		grid-template-columns: repeat( 2 , 1fr ) ;
	}
	.container-modal.dish .information{
		display: block ;
		text-align: center ;
	}
	.container-modal.dish .information img{
		width: 200px ;
		height: 200px ;
		margin-bottom: 10px ;
	}
}
@media(max-width: 750px){
	.slide .text h1{
		font-size: 35px ;
		margin-top: 60px ;
	}
	header .buttons .button-menu{
		display: block ;
	}
	header .menu{
		display: block ;
		position: fixed ;
		background-color: #282828 ;
		top: 0px ;
		left: 0px ;
		width: 100vw ;
		height: 100dvh ;
		z-index: 999 ;
		padding: 40px ;
		box-sizing: border-box ;
		opacity: 0 ;
		visibility: hidden ;
		transition-property: opacity , visibility ;
		transition-duration: 0.25s ;
	}
	header .menu.active{
		opacity: 1 ;
		visibility: visible ;
	}
	header .menu ul{
		height: 100% ;
		flex-direction: column ;
		justify-content: space-around ;
	}
	header .menu ul li a{
		font-size: 20px ;
		color: #F2F2F2 ;
	}
	header .menu ul li a:hover{
		color: #FFFFFF ;
	}
	#order > .text{
		font-size: 14px ;
	}
	.grid-c3{
		grid-template-columns: 1fr ;
	}
	.list-dishes-companies > .input-box{
		width: 100% ;
	}
}
@media(max-width: 650px){
	.grid-c4{
		grid-template-columns: 1fr ;
	}
	section.healthy > .text,
	section.precooked > .text{
		display: none ;
	}
	section.healthy::after,
	section.precooked::after{
		height: 125px ;
	}
	.side-dishes .title{
		margin-top: 20px ;
	}
	.side-dishes .title span{
		display: block ;
		margin: -20px 0px -20px 0px ;
	}
}
@media(max-width: 500px){
	header .buttons .button-login{
		display: none ;
	}
	.slide .text h1{
		font-size: 35px ;
		margin-top: 30px ;
	}
	.slide .text{
		padding: 45px 30px 45px 30px ;
		text-align: center ;
		align-items: center ;
	}
	#order .tab-bar .bars{
		justify-content: center ;
	}
	section.healthy h2,
	section.precooked h2{
		text-align: center ;
	}
	section.healthy::after,
	section.precooked::after{
		display: none ;
	}
}
@media(max-width: 350px){
	.slide .text h1{
		font-size: 25px ;
		margin-top: 0px ;
	}
	.slide .text{
		padding: 30px ;
	}
}
/* ========================================
   TERMS CHECKBOX (Modal de Checkout)
   ======================================== */
.terms-checkbox{
	display: flex ;
	align-items: flex-start ;
	gap: 10px ;
	margin: 20px 0 ;
	padding: 15px ;
	background-color: #F8F9FA ;
	border-radius: 10px ;
	border: 1px solid #E8E8E8 ;
}
.terms-checkbox input[type="checkbox"]{
	margin-top: 3px ;
	width: 18px ;
	height: 18px ;
	cursor: pointer ;
	accent-color: var(--primary-color) ;
	flex-shrink: 0 ;
}
.terms-checkbox label{
	font-size: 14px ;
	color: #444 ;
	line-height: 1.5 ;
	cursor: pointer ;
}
.terms-checkbox label a{
	color: var(--primary-color) ;
	text-decoration: underline ;
	transition: opacity 0.25s ;
}
.terms-checkbox label a:hover{
	opacity: 0.7 ;
}
@media(max-width: 500px){
	.terms-checkbox{
		padding: 12px ;
	}
	.terms-checkbox label{
		font-size: 13px ;
	}
}