.hero-slider {
    width: 100%;
    height: 460px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0
}

.hero-slider .slide-inner:before {
    content: "";
    background: rgba(0,0,0,.25);
    right: 0
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff
}

.hero-slider .slide-inner,.hero-slider .slide-inner:before,.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.hero-slider .slide-inner {
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left
}

.hero-slider .swiper-button-next,.hero-slider .swiper-button-prev {
    background: 0 0;
    width: 55px;
    height: 55px;
    line-height: 53px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid #d4d3d3;
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.hero-slider:hover .swiper-button-next,.hero-slider:hover .swiper-button-prev {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible
}

.hero-slider .swiper-button-prev {
    left: 25px;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px)
}

.hero-slider .swiper-button-next:before,.hero-slider .swiper-button-prev:before {
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    color: #d4d3d3;
    font-style: normal;
    display: inline-block;
    font-weight: 900
}

.hero-slider .swiper-button-prev:before {
    content: "ï ";
    vertical-align: middle
}

.hero-slider .swiper-button-next {
    right: 25px;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px)
}

.hero-slider .swiper-button-next:before {
    content: "ï¡"
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: .3;
    background: #fff;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1
}

.hero-slider .swiper-pagination-custom,.hero-slider .swiper-pagination-fraction {
    bottom: 30px
}

.swiper-pagination {
    text-align: right
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 30px;
    max-width: 928px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.hero-style .slide-btns,.hero-style .slide-text,.hero-style .slide-title {
    max-width: 600px
}

.hero-style .slide-text p,.hero-style .slide-title h2 {
    color: #fff;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.hero-style .slide-title h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 150%;
    margin: 0 0 15px
}

.hero-style .slide-text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 22px
}

.hero-style .slide-btns>a:first-child {
    margin-right: 10px
}

@media (min-width: 992px) {
    .hero-slider {
        height: 340px
    }
    
}

@media (min-width: 768px) {
	.store-on-mobile {
		display: none;
	}
	
	
}

@media (min-width: 1200px) {
    .hero-slider {
        height: 380px
    }
}

@media (min-width: 1400px) {
    .hero-slider {
        height: 410px
    }
}

@media (max-width: 992px){
	/*.hero-slider .slide-inner,.hero-slider .slide-inner:before,.hero-slider .swiper-container {
	    height: 340px;
	}*/
	
	.product-item {
	    padding: 10px;
	    
	    .prod-action {
	    	width: 100%;
	    }
	    
	    .btn.btn-add {
	    	width: 100%;
	    }
	}
	
	.navbar-nav .user-account-content {
		display: none;
	}
	
	.logo-on-desktop {
		display: none;
	}
	
	.store-on-desktop {
		display: none;
	}
	
	.col-icons {
		max-width: max-content;
	}
}

/* slider category */

.content-category-slider {
	
	.slider-category {
		display: flex;
	    gap: 1rem;
	    scroll-behavior: smooth;
	    overflow-x: auto;
	    scrollbar-width: none;
	}
	
	.slide-category {
		background: #F3F4F6;
		color: #000;
		border-radius: 20px;
		padding: 0.4rem 1rem;
		width: fit-content;
		white-space: nowrap;
		cursor: pointer;
		
		&.active {
			background: var(--main-bg-color);
			
			a.category-item {
				color: #fff;
			}
		}
		
		a.category-item {
			text-decoration: none;
			color: #000;
			font-size: 0.9rem;
			display: block;
			
			img {
				width: 2rem;
				margin-right: 0.5rem;
				height: 1.6rem;
				object-fit: contain;
			}
		}
		
		a.category-item .active{
			text-decoration: none;
			color: #000;
		}
		/*var(--main-bg-color)*/
	}
	
	.slide-category:hover {
		background: #D2FFE8;
		
		a.category-item {
			color: var(--main-bg-color);
		}
	}
	
}


/*.navbar-expand-md .navbar-toggler {
	display: block;
}
*/
.store-content {
	.address p{
		font-size: 0.85rem;
	}
	
	.address span {
		cursor: pointer;
	}
}

.product-item {
	
	border-radius: 10px;
	
	.product-caption .description {
		min-height: 40px;
		 max-height: 40px;
	}
    
    .product-caption .description p {
	    display: -webkit-box;
	    -webkit-line-clamp: 2;
	    -webkit-box-orient: vertical;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    font-size: 0.75rem;
	}
    
    .product-footer {
    	display: flex;
    	align-items: center;
    	justify-content: space-between;
    	flex-wrap: wrap;
    	
    	.price {
    		font-weight: 700;
    	}
    }
    
    .btn.btn-add {
    	border-radius: 5px;
    	font-size: 0.8rem;
    }
}

.container-subcategory {
    margin-bottom: -2.1rem;
    
    input[type=radio]{
    	position: absolute;
    	clip: rect(0, 0, 0, 0);
    	pointer-events: none;
    }
    
    label {
    	font-size: 0.8rem;
    }
}

.feature-area {
	
	.section-title, .title {
		margin-bottom: 1rem;
	}
	
	.title h3, .section-title h4{
		font-weight: 700;
	}
}

#menuOnDesktop {
	display: none;
}

.modal-direcciones-listar  {
	input[type=checkbox], input[type=radio]{
	    	position: absolute;
	    	clip: rect(0, 0, 0, 0);
	    	pointer-events: none;
	    }
}

#frm_direccion_seleccionar {
	.address-list {
		.address-item {
			border: 1px solid #dedede;
		    padding: 0.8rem;
		    border-radius: 10px;
		    margin-bottom: 0.7rem;
		    
		    &.selected {
		    	border: 1px solid var(--main-bg-color);
		    	/*background: #e4fff1;*/

		    }
		    
		    .address h5{
		    	font-size: 1rem;
		    	font-weight: 700;
		    }
		    
		    .address p {
		    	margin-bottom: 0.5rem;
		    }
		}
		
		.address-actions {
			display: none;
		}
		
		
	}
}

.modal-addcart .modal-title .icon {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: #3BB54A;
    border-radius: 100%;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    line-height: 26px;
    vertical-align: middle;
    margin-right: 6px;
}

.product-modal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem
}

.product-modal .prod-quantity .cart-quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-modal .prod-quantity .cart-quantity .btn-quantity {
    width: 33px;
    height: 32px;
    border: 2px solid #E6E6E6;
    border-radius: 10px;
    font-size: 10px;
    line-height: 30px;
    padding: 0;
    margin-right: 6px;
}

.product-modal .prod-quantity .cart-quantity .form-control {
    width: 50px;
    height: 32px;
    border: 2px solid #E6E6E6;
    border-radius: 10px;
    /* font: 700 13px "Open Sans", sans-serif; */
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    margin-right: 6px;
    padding: 0;
}

@media (min-width: 576px) {
    .modal-addcart {
        min-width: 600px;
    }
}

.product-modal .prod-image img {
    max-width: 95px;
}

.product-modal .prod-image img {
    max-width: 55px;
    border-radius: 6px;
    height: 55px;
}

#modalAddCart .prod-info {
    width: 320px;
}

.product-modal .prod-info h5 {
    font-weight: 700;
    font-size: 16px;
    color: #495263;
}

.product-modal .prod-quantity .button {
    padding-top: 18px;
}

.product-modal .prod-info p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #495263;
    overflow: hidden;
    text-overflow: ellipsis;
}

.especificaciones-adicionales {
    padding-top: 22px;
}

.especificaciones-adicionales__control {
    cursor: pointer;
}

.especificaciones-adicionales .button button {
    margin-top: 15px;
    margin-left: auto;
    height: 32px;
    color: #fff;
}

/* INICIO PROPINAS */


.propina-item {
	cursor: pointer;
	/*border: 2px solid #ccc;*/
	border-radius: 5px;
	min-width: 50px;
	height: 50px;
	text-align: center;
	padding: 13px;
	/*flex: inherit;*/
	/*margin-right: 15px;*/
	margin:0.4em;
	font-weight: 700;
	font-size: 16px;
	color: #000000;
	background-color: #eee;
}
.propina-item.active {
    background-color: var(--main-bg-color);;
    color: #fff;
}

.propina-lista {
    margin: 0;
}

.modal-dialog.modal-agregar-propina .modal-header h5 {
    text-align: center;
}

/* FIN PROPINAS */

.account-wrapper .title-card h2 {
    font-size: 20px;
    color: #272d4c;
    text-align: center;
    font-weight: bold;
}

.payment-methods h3 {
    font-size: 16px;
    color: #272d4c;
}

.payment-form {
    padding-top: 30px;
    color: #777776;
}

.payment-form .btn-trash {
    font-size: 14px;
    padding: 0 .75rem;
}

.payment-methods .form-group {
    margin-bottom: 1rem;
}

.payment-checkbox .cash-payment {
	display: flex;
	align-items: center;
	gap: 1rem
}