/*=============== GOOGLE FONTS ===============*/

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /*
      Blue: hsl(207, 90%, 61%)
      Purple: hsl(250, 66%, 75%)
      Pink: hsl(356, 66%, 75%)
      Teal: hsl(174, 63%, 62%)
  */

  --hue: 207;
  --sat: 90%;
  --lig: 61%;
  --first-color:#ff0032;
  --transparent-color:#f146242e;
  --first-color-alt: hsl(var(--hue), var(--sat), 57%); /* -4% */
  --title-color: hsl(var(--hue), 12%, 15%);
  --text-color: hsl(var(--hue), 12%, 45%);
  --text-color-light: hsl(var(--hue), 8%, 75%);
  --text-color-lighten: hsl(var(--hue), 8%, 92%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #fff;
  --color-text-type1:var(--first-color);;
  --fs-sm: 1.4rem;
--fs-md: 1.6rem;
--fs-lg: 2.2rem;
--fw-regular: 400;
--fw-medium: 500;
--fw-bold: 700;
--transition: 0.4s ease-in-out; 
--shadow: 0px 60px 56px -12px rgba(9, 40, 163, 0.05); 
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font:  "Satoshi", sans-serif;;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --padding-style1: 30px 20px 30px 20px;
}

@media screen and (min-width: 968px) {
  :root {
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .3s; /* For animation dark mode */
  padding-right: 0px !important;
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
}
#idtext{
  color:rebeccapurple;
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: 600;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
      color: black;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/
.change-theme {
  position: absolute;
  top: 1.5rem;
  right: 0;
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: .3s;
}

.change-theme:hover {
  color: var(--first-color);
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --title-color: hsl(var(--hue), 12%, 95%);
  --text-color: hsl(var(--hue), 12%, 75%);
  --body-color: hsl(var(--hue), 40%, 8%);
  --container-color: hsl(var(--hue), 24%, 12%);
}

/*========== 
    Color changes in some parts of 
    the website, in light theme
==========*/
.dark-theme .content-input{
    background-color: var(--container-color) !important;
}
.dark-theme .modal-estatus{
  background-color: var(--body-color) !important;

}.dark-theme .header-modal{
  background-color: var(--body-color) !important;

}.dark-theme .content-qr{
  background-color: var(--body-color) !important;

}.dark-theme .card-estatus{
  background-color: var(--container-color);
}.dark-theme .content-filtro{
  background-color: var(--body-color);
}
.dark-theme .button__gray {
  background-color: var(--container-color);
}.dark-theme .btn-filtro{
  background-color: var(--body-color);
  box-shadow: var(--shadow);
  border: 1px solid var(--first-color);
}.dark-theme .card-filtros{
  background-color: var(--body-color);
  box-shadow: var(--shadow);
}.dark-theme .btn-filtros{
  background: white;
  color: #3f3f3f;
}.dark-theme .modal-main-card span{
  color: white;
}.dark-theme .modal-preparacion{
  background-color: var(--body-color);
}.dark-theme .accordion{
  background-color: var(--container-color);
}.dark-theme .accordion__answer{
  color: #ffffff !important;
}.dark-theme .modal-terminar{
  background-color: var(--container-color);
}.dark-theme .terminar-contenedor{
  background-color: var(--body-color);
}.dark-theme span{
  color: white !important;
}.dark-theme p{
  color: white !important;
}.dark-theme textarea{
  color: white !important;
  background-color: var(--container-color);
}.dark-theme input
{
  color: white !important;
  background-color: var(--container-color);
}.dark-theme .card-descrip{
    background: var(--body-color) !important;
}
.dark-theme .modal-salsas{
  background-color: var(--body-color);
}.dark-theme .instruccion span{
  color: white;
}.dark-theme .card-manual{
  background-color: var(--body-color);
}
.dark-theme .button__gray:hover {
  background-color: hsl(var(--hue), 24%, 16%);
}.dark-theme .profile__perfil{
  background-color: white;
}

.dark-theme .filters__content {
  background-color: var(--container-color);
}.dark-theme .money{
  color: var(--first-color) !important;
}.dark-theme #titulo-config{
  color: black !important;

}
.dark-theme .h2{
  color: rgb(255, 255, 255) ;

}.dark-theme .contenedor-pago-tarjeta{
 background-color: var(--body-color);

}.dark-theme #btn-efectivo{
color: white;
 
 }.dark-theme #btn-terminal{
  color: white;
   
   }
.dark-theme::-webkit-scrollbar {
  background-color: hsl(var(--hue), 8%, 16%);
}

.dark-theme::-webkit-scrollbar-thumb {
  background-color: hsl(var(--hue), 8%, 24%);
}
dark-theme #btn-mas{
    background-color: var(--body-color);
    
}

.dark-theme::-webkit-scrollbar-thumb:hover {
  background-color: hsl(var(--hue), 8%, 32%);
}.agregar_desenfoque{
  filter: blur(3px)contrast(1)brightness(1);

}
.card__info{
  box-shadow:rgba(100, 100, 111, .2) 10px 17px 29px 0px,rgba(238, 37, 221, 0.068)0px 2px 0px;;
  border-radius: 2rem;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}.card__info p{
  color: black;
}.header_card_modal{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;

  flex-direction: column;
  padding:var(--padding-style1);
 background-color: rgb(255, 255, 255);
 border-top-left-radius:  2rem;
 border-top-right-radius: 2rem;
}.mt1{
margin-top: 5px;
}.mt2{
  margin-top: 10px;
}
.mt3{
  margin-top: 15px;
}
.mt4{
  margin-top: 20px;
}
.ml1{
  margin-left: 5px;
}
.ml2{
  margin-left: 10px;
}.ml3{
  margin-left: 15px;
}.mr1{
  margin-right: 5px;
}.mr2{
  margin-right: 10px;
}.mr3{
  margin-right: 15px;
}.mr4{
  margin-right: 20px;
}.mr5{
  margin-right: 25px;
}
.pt1{
  padding-top: 5px;
}.pt2{
  padding-top: 10px;
}.pt3{
  padding-top: 15px;
}.pl1{
  padding-left: 5px;
}.pl2{
  padding-left: 10px;
}.pl3{
  padding-left: 15px;
}.pr1{
  padding-right: 5px;
}.pr2{
  padding-right: 10px;
}.pr3{
  padding-right: 15px;
}
.text-p1{
 font-weight: bold;
}.text-p2{
  font-weight: normal;
}.small-text1{
  font-size: 10px;
}.small-text2{
  font-size: 12px;
}.small-text3{
  font-size: 15px;
}.large-text1{
  font-size: 20px;
}.text-center{
  text-align: center;
 
}.sp-txt1{
  letter-spacing: 2px;
}
.sp-txt2{
  letter-spacing: 3px;
}.sp-txt3{
  letter-spacing: 4px;
}
.content_card_modal{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
background-color: rgb(255, 255, 255);
}#btn-mas{
    width: 100px;
    height:50px;
    text-align:center;
    font-size:15px;
    border-radius:1rem;
    font-weight:600;
    border:none;
}
.flex-row{
    display: flex;
    align-content: center;
    width: 100%;
    height: 40px;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 18px;
    padding-right: 18px;
}.black-letter{
    font-weight: 600;
    color: black;
}
.row{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
background-color: rgb(255, 255, 255);
padding: 5px 15px 5px 10px;
}.col1{
  width:100%;
  height: 60px;
  background-color: #ffffff;
 margin-right: 10px;
 margin-left: 10px;
}
.col2{
  width:50%;
  height: 60px;
  background-color: #ffffff;
 margin-right: 10px;
 margin-left: 10px;
}

.input_form{
  width: 100%;
  height: 40px;
  border: 1px solid #b3b1b1;
  outline: none;
  border-radius: 0.2rem;
}.text-float{
  font-size: 15px;
  color: #070707;
  letter-spacing: 2px;
}
.footer_card_modal{
  width: 100%;
  height: 100%;
  padding:var(--padding-style1);
display: flex;
align-items: center;
justify-content: right;
background-color: rgb(255, 255, 255);
border-end-start-radius: 2rem;
border-end-end-radius: 2rem;
}.btn_aceptar{
  width: 200px;
  height: 40px;
  color: white;
  border: none;
  background-color: var( --first-color);
  border-radius: 0.5rem;
  margin-left: 10px;
}.btn_cancelar{
 
  width: 100px;
  height: 40px;
  color: rgb(56, 55, 55);
  border: none;
  border: solid 1px #7a7878;
  background-color: rgb(255, 255, 255);
  border-radius: 0.5rem;
}
.btn-notifi {
  position: absolute;
  top: 1.5rem;
  left: 0px;
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: .3s;
}
.btn-ubicacion {
  position: absolute;
  top: 1.5rem;
  left: 36px;
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: .3s;
}
.btn-manual {
  position: absolute;
  top: 1.5rem;
  left: 73px;
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: .3s;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 968px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== PROFILE ===============*/
.profile {
  position: relative;
  padding-top: 3.5rem;
}

.profile__container {
  row-gap: 1rem;
}

.profile__data {
  display: grid;
  text-align: center;
}

.profile__perfil {
  width: 100px;
  height: 100px;
 
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.profile__perfil img {
     width: 100%;
    object-fit: cover;
    height: 100%;
}

.profile__border {
  border: 3.5px solid var(--first-color);
  justify-self: center;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
}.profile__horario{
   font-size: var(--small-font-size);
   color: var(--color-text-type1); 
}

.profile__name {
  font-size: var(--h3-font-size);
  color: var(--title-color);
}.profile__saludo{
  font-size: var(--normal-font-size);
  color: var(--color-text-type1);
}

.profile__profession {
  font-size: var(--smaller-font-size);
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.profile__social {
  display: flex;
  justify-content: center;
  column-gap: .75rem;
}

.profile__social-link {
  font-size: 1.25rem;
  color: var(--title-color);
  transition: .3s;
}

.profile__social-link:hover {
  color: var(--first-color);
}

.profile__info {
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  column-gap: 1.5rem;
}

.profile__info-group {
  text-align: center;
}

.profile__info-number {
  font-size: var(--normal-font-size);
  margin-bottom: .25rem;
}

.profile__info-description {
  font-size: var(--smaller-font-size);
  font-weight: 500;
}

.profile__buttons, 
.profile__buttons-small {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile__buttons {
  column-gap: 1rem;
}

.profile__buttons-small {
  column-gap: .25rem;
}
.flex-column{
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    flex-direction: column;
}
/*=============== BUTTONS ===============*/
.button {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  background-color: var(--first-color);
  color: #fff;
  padding: 1.15rem 1.5rem;
  border-radius: .5rem;
  transition: .3s;
  box-shadow: 0 8px 24px hsla(var(--hue), var(--sat), var(--lig), .25);
}

.button i {
  font-size: 1.25rem;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button__small {
  padding: .75rem;
  box-shadow: none;
}

.button__gray {
  background-color: var(--text-color-lighten);
  color: var(--title-color);
}

.button__gray:hover {
  background-color: var(--text-color-light);
}

/*=============== FILTERS TABS===============*/
.filters__content {
  margin: 2rem 0 .5rem;
  background-color: var(--text-color-lighten);
  padding: .375rem;
  border-radius: .75rem;
  display: flex;
  justify-content: space-between;
  column-gap: .5rem;
}

.filters__button {
  width: 100%;
  border: none;
  outline: none;
  padding: 1rem;
  color: var(--title-color);
  font-size: var(--small-font-size);
  font-family: var(--body-font);
  font-weight: 500;
  border-radius: .75rem;
  cursor: pointer;
  background-color: transparent;
  transition: .3s;
}

.filters__button:hover {
  background-color: var(--body-color);
}
/* Estilo para las barras de desplazamiento */

#lista-productos::-webkit-scrollbar {
  width: 0px; /* Ancho de la barra de desplazamiento */
}

/* Estilo para el riel de la barra de desplazamiento */
#lista-productos::-webkit-scrollbar-track {
  background-color: transparent; /* Color transparente para el riel */
}

/* Estilo para el pulgar de la barra de desplazamiento */
#lista-productos::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0); /* Color transparente con opacidad */
}

/*=============== PROJECTS ===============*/
#lista-productos{
  width: 100%;
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
  overflow-y: scroll;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 12px;
  justify-content: center;
}
.projects__card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  width: 48%;
  height: 251px;
}

.projects__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects__modal {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  background: linear-gradient(180deg, 
              hsla(var(--hue), 24%, 40%, .3) 0%, 
              hsla(var(--hue), 24%, 4%, 1) 95%);
  display: grid;
  align-items: flex-end;
  padding: 1.5rem 1.25rem;
  transition: .3s;
}

.projects__subtitle, 
.projects__title {
  color: #fff;
}

.projects__subtitle {
  font-size: var(--smaller-font-size);
}

.projects__title {
  font-size: var(--h3-font-size);
  margin-bottom: .75rem;
}

.projects__button {
  padding: .5rem;
  cursor: pointer;

}.ri-link2{
  font-weight: normal;
  cursor: pointer;
}

.projects__card:hover .projects__modal {
  bottom: 0px;
}

/*=============== SKILLS ===============*/
.skills__content {
  row-gap: 3.5rem;
}

.skills__title {
  font-size: var(--h3-font-size);
  text-align: center;
  margin-bottom: 1.5rem;
}

.skills__box {
  display: flex;
  justify-content: center;
  column-gap: 2rem;
}

.skills__group {
  display: grid;
  align-content: flex-start;
  row-gap: 1rem;
}

.skills__data {
  display: flex;
  column-gap: .5rem;
}

.skills__data i {
  font-size: 1rem;
  color: var(--first-color);
}

.skills__name {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.skills__level {
  font-size: var(--smaller-font-size);
}

/* Hide and show projects & skills */
.filters [data-content] {
  display: none;
}

.filters__active[data-content] {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-content: stretch;

}

/* Activate button filter */
.filter-tab-active {
  background-color: var(--body-color);
}

/*=============== FOOTER ===============*/
.footer__copy {
  display: block;
  margin: 2.5rem 0 2rem;
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0;
  border-radius: 1px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 1px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}

/*=============== BREAKPOINTS ===============*/
@media screen and (min-width: 320px) {

.row{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    
  }.col2{
    width: 100%;
    height: 60px;
  
  }
  .card__info{
    border-radius: 2rem;

    width:90%;
    height: 50%;
    position: fixed;
  
  }
}
/* For small devices */
@media screen and (max-width: 320px) {
  .col1{
    width:10%;
    height: 60px;
    background-color: #ca1b1b;
   margin-right: 10px;
   margin-left: 10px;
  }
  .card__info{
    border-radius: 2rem;

    width:90%;
    height: 50%;
    position: fixed;
  
  }
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .profile__info {
    column-gap: 1.5rem;
  }
  .profile__buttons {
    flex-direction: column;
    row-gap: 1rem;
  }

  .skills__box {
    column-gap: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {

.formu-datos{
    gap: 25px !important;
}
  .col1{
  width:100%;
  height: 60px;
  background-color: #ffffff;
 margin-right: 10px;
 margin-left: 10px;
}
  .row{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    
  }.col2{
    width: 50%;
    height: 60px;
  
  }
  .card__info{
    border-radius: 2rem;
    width:80%;
    height: 50%;
    position: fixed;
  
  }
  .projects__content {
    grid-template-columns: 332px;
    justify-content: center;

  }

  .filters__content {
    width: 332px;
    margin: 3rem auto;
  }
}

@media screen and (min-width: 776px) {
  .card__info{
    border-radius: 2rem;

    width:85%;
    height: 55%;
    position: fixed;
  
  }
  .projects__content,
  .skills__content {
    grid-template-columns: repeat(2, 332px);
  }

  .skills__content {
    justify-content: center;
    column-gap: 3rem;
  }
}

/* For large devices */
@media screen and (min-width: 992px) {
  .card__info{
    border-radius: 2rem;
    width:50%;
    height: 50%;
    position: fixed;
  
  }
  .container {
    margin-left: auto;
    margin-right: auto;

  }

  .change-theme {
    top: 2.5rem;
    right: 2.5rem;
  }

  .profile {
    padding-top: 4rem;
  }
  .profile__border {
    width: 135px;
    height: 135px;
    margin-bottom: 1rem;
  }
  .profile__perfil {
    width: 120px;
    height: 120px;
  }
  .profile__perfil img {
          width: 126px;
        height: 106px;
  }
  .profile__profession {
    margin-bottom: 1.5rem;
  }
  .profile__info {
    column-gap: 3rem;
  }
  .profile__info-description {
    font-size: var(--small-font-size);
  }
  .profile__buttons {
    column-gap: 2rem;
  }

  .projects__content {
    gap: 2rem 3rem;
  }
  .projects__modal {
    padding: 1.5rem;
  }

  .skills__title {
    font-size: var(--normal-font-size);
    margin-bottom: 2.5rem;
  }

  .footer__copy {
    margin: 4.5rem 0 2.5rem;
  }
  .btn-notifi{
    top: 2.5rem !important;
    right: 6.5rem !important;
  }.content-btn-carro{
    top: 25px !important;
    right: 66px !important;
  }.btn-ubicacion{
    top: 2.5rem !important;
    left: 66px !important;
  }
  .btn-manual{
    top: 2.5rem !important;
    left: 127px !important;
  }.card-manual{
    width: 37% !important;
  }.instruccion{
    height: 570px;
  }
  ::-webkit-scrollbar {
    width: 6px;
    border-radius: .5rem;
    background-color: hsl(var(--hue), 8%, 66%);
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: hsl(var(--hue), 8%, 54%);
    border-radius: .5rem;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: hsl(var(--hue), 8%, 44%);
  }
}
.modal__view{
  z-index: 1400;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.548);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;

}


/*modal preparacion*/
.h1,.h2,.h3{
  display: flex;
  justify-content: center;
  align-items: center;
}

.h1{
  width: 27.33%;
  height: 100%;
  display: flex;
  padding-left: 10px;
  justify-content: flex-start;
}
.h1 i{
  font-size: 19px;
  background-color: var(--first-color);
  color: white;
  border-radius: 5rem;
  padding: 7px;

}.h1 a{
  text-decoration: none;
}
.h2{
  width: 45.34%;
  height: 100%;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: #000;
}
.h3{
  width: 27.33%;
  height: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-left: 40px;
}
.h3 i{
  font-size: 19px;
    background-color: var(--first-color);
    color: white;
    border-radius: 5rem;
    padding: 7px;
}
#subtitulo-info{
  font-size: 13px;
 
  text-align: center;
  color: var(--first-color);
}.lista-ingredientes{
  display: flex;
  height: 100%;
  gap: 17px;
  align-content: center;
  justify-content: center;
}.label-ingrediente
{
  font-size: 22px;
}.content-items{
  width: 100%;
  height: 51px;
  border-radius: 1rem;
  display: flex;
  padding-top: 5px;
  flex-direction: column;
  justify-content: space-between;
  font-size: 11px;
  background-color: white;
  color: rgb(46, 44, 44);
  align-items: center;
  box-shadow: var(--shadow);
}.content-items span:nth-child(1){
  background: #bd1212;
    width: 100%;
    border-bottom-left-radius: 1rem;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.content-items span:nth-child(2){
  background: #127ebd;
    width: 100%;
    border-bottom-right-radius: 1rem;
    
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
#target:target {
  background-color: rgb(224, 224, 224);
}
.modal-config{
  z-index: 9999;
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color:#012e5566;
  top: 0;
}.card-config{
  width: 100%;
  border-top-right-radius: 2.4rem;
    border-top-left-radius: 2.4rem;
  background-color:white;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: absolute;
    bottom: 0;
  align-items: center;
}.modal-main-config{
  width: 100%;
    padding-right: 10px;
    height: 75%;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}.header-modal-config{
  width: 100%;
  height: 15%;
  grid-area: header-modal;
  display: flex;
  flex-direction: row;
  }
.modal-terminar{
  z-index: 9999;
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: white;
  top: 0;
}
.modal-filtros{
  z-index: 5000;
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  background-color:#012e5566;
  transition: all 6s;
  top: 0;
}.card-filtros{
  width: 100%;
  height: 50%;
  border-radius: 1rem;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: all 5s;

}.filtros{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 27px;
  justify-content: center;
  align-content: center;
}.btn-filtro{
  width: 100px;
  height: 39px;
  outline: none;
  border: none;
  background:#d2d4e175;
  color:#535360;
  border-radius: 0.5rem;
  margin-top: 10px;
    margin-bottom: 10px;
}.content-filtro{
  width: 100%;
  height:75px;
  background-color:var(--body-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

}.content-filtro input
{
  width: 200px;
  height: 40px;
  outline: none;
  border: none;
  font-size: 15px;
  color: #3f3f3f;
  border-radius: 0.5rem;
  padding-left: 20px;
  padding-right: 20px;
}
.btn-filtros{
  padding: 10px 20px;
  background: #d2d4e175;
  color:#535360;
  font-size: 13px;
  outline: none;
  border: none;
  border-radius: .5rem;
text-align: center;
}.btn-filtro i{
  font-size: 15px;
}.btn-filtros:hover{
  transform: scale(1.2);
  background-color: var(--first-color);
color: white;
}

.modal-preparacion{
  z-index: 5000;
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: white;
  top: 0;
}.card-checkout{
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    background: white;
    border-radius: 1rem;
}
.modal-checkout{
  z-index: 9999;
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #012e5566;
  top: 0;
}
.modal-estatus{
  z-index: 5000;
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: white;
  top: 0;
}
.header-modal-card{
  width: 100%;
  height: 20%;
  grid-area: header-modal;
  display: flex;
  flex-direction: row;
  }
  .modal-main-card{
    width: 100%;
    padding-right: 10px;
    height: 60%;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  
  }.modal-main-card span{
    font-size: 15px;
  }
  .footer-modal-card{
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--first-color);
   
  }.footer-modal-card button{
    background-color: var(--first-color);
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    color: white; 
    font-weight: bold;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }
.header-modal{
    border-radius: 1rem;
width: 100%;
height: 10%;
grid-area: header-modal;
display: flex;
flex-direction: row;
}.modal-main{
  width: 100%;
  padding-right: 10px;
  height: 83%;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  gap: 13px;

}.footer-modal{
  width: 100%;
  height: 8%;
  display: flex;
  align-items: center;
      border-radius: 1rem;

}.contenedor-input-row{
  display: flex;
   width: 100%;
   height: 54px;
   margin-bottom: 18px;
   flex-direction: row;
   gap: 10px;
   align-items: center;
 
 }
 /* btn deslizante */


.slide-button {
  position: relative;
  width: 100%;
     width: 50px;
    height: 50px;
  padding: 15px;
  font-size: 18px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slide-button:hover {
  background-color: #2980b9;
}

.slide-button:active {
  background-color: #1c658c;
}

/* Efecto de deslizamiento */
.slide-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.slide-button.sliding {
  transform: translateX(100%);
  width: 100%; /* Cambiar el ancho al 100% cuando se deslice */
}

.slide-button .handle {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  transform: translateY(-50%);
}



.slide-button.reset {
        border-start-end-radius: 0rem;
    border-start-start-radius: 0rem;
        border-end-end-radius: 1rem;
    border-end-start-radius: 1rem;
  transform: translateX(0); /* Regresa a su posición original */
  width: 100% !important; /* Vuelve al tamaño original */
  transition: transform 0.5s ease, width 0.5s ease; /* Suavizamos el regreso */
}


 /* */
.contenedor-input{
  margin-top: 10px;
  width: 100%;
  height: 64px;
  background-color: var(--text-color-lighten);
  border-radius: .75rem;
  text-align: left;
  padding: 0.375rem 9px 0.2rem 9px;
}.contenedor-input input{
  width: 90%;
  height: 30px;
  outline: none;
  border:none;
  background-color:transparent;
 
  font-size: 16px;
}
.btn-transparent{
  background-color: transparent;
  border: none;
  outline: none;
  font-family: "Satoshi", sans-serif;
 
}.footer-modal-checkout button{
  background-color: #141212;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    border-radius: 6rem;
    color: white;
    font-weight: bold;
}.footer-modal button{
  background-color: #141212;
    border: none;
    outline: none;
    width: 100%;
    height:100%;
    color: white;
    font-weight: bold;
}
label{
  display: flex;
/* align-items: center; */
justify-content: center;
align-content: center;
flex-wrap: nowrap;
flex-direction: row;
}
input[type=checkbox] + label {
  display: block;
  cursor: pointer;
  padding: 0.2em;
  font-family: 'Arial'
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label:before {
  content: "\2714";
  border: 0.1em solid #000;
  border-radius: 0.2em;
  display: inline-block;
  width: 1em;
  height: 1em;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 1.2em;
  vertical-align: bottom;
  color: transparent;
  transition: .2s;
}

input[type=checkbox] + label:active:before {
  transform: scale(0);
}

input[type=checkbox]:checked + label:before {
  background-color: var(--first-color);
  border-color: var(--first-color);
  color: #fff;
}

input[type=checkbox]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}

input[type=checkbox]:checked:disabled + label:before {
  transform: scale(1);
  background-color:var(--first-color);
  border-color: var(--first-color);
}
.content-check{
  display: flex;

  width: 83%;
}
.btn-tipo-entrega{
    width: 60%;
    height: 164px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  outline: none;
  border: 2px solid var(--first-color);
  gap: 13px;
  flex-direction: column;
  border-radius: 1rem;
  font-family: "Satoshi", sans-serif;
}
.btn-tipo-entrega i{
  font-size: 34px;
  color: var(--first-color);
}
.none{
  display: none !important ;
}.flex{
  display: flex !important;
}
.btn-tipo-entrega:hover{
  
    background-color: var(--first-color);
  color: white;
  
  
}.btn-tipo-entrega:hover i{
  color: white;
}.add_color_tipoEntrega{
  background-color: var(--first-color) !important;
  color: white !important;
}.add_color_tipoEntrega i{
  color: white !important;
}

/*style acordion*/


.grupo{
    width: 100%;
    height: auto;
    padding: 19px;
    background: #f7f7f79e;
    border-radius: 1rem;
}.grupo_num{
  font-size: 18px;
    color: white;
    padding-left: 10px;
    background: var(--first-color);
    padding-right: 10px;
}.grupo_header{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-text-type1);
    margin-bottom: 10px;
        border-radius: 0.3rem;
        gap: 57px;
        
}
.accordion__wrapper {
  background-color: var(--color-white);
  box-shadow: var(--shadow);
  border-radius: 2.5rem;
  width: 100%;
  max-width: 60rem;
  padding: 5rem;
}
.accordion__consumo{
 font-size: 14px;
    font-weight: 600;
    color: var(--title-color);
    padding: 5px;
    background: #d9d9d9a8;
    width: 179px;
    height: 29px;
    border-radius: 0.2rem;
    padding-left: 13px;

}

.accordion__title{
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-title);
  text-align: center;
  margin-bottom: 4rem;
}

.accordion {
  border-bottom: 0.1rem solid var(--color-border);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  
  padding-right: 10px;
  gap: 1rem;
  cursor: pointer;

  flex-direction: column;
} .color_consumo_llevar{

  font-size: 14px;
  color: black;
  background:#dbdbdb;
  width: 130px;
  height: 30px;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}.color_consumo_aqui{
  font-size: 12px;
  color: white;
  background: var(--first-color);
  width: 130px;
  height: 23px;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}hr{
  width: 267px;
  margin-bottom: 10px;
  border: 1px solid #4b4b4b52;
}
.accordion__row__titulo{
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
      padding-left: 6px;
  justify-content: space-between; 

}
.accordion__icon {
  background-color: var(--color-primary);
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--color-white);
  flex-shrink: 0;
}

.accordion__question{
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--first-color);
}

.accordion__answer{
  padding: 0.5rem 0;
}

.accordion__content{
  overflow: hidden;
  height: 0;
  padding-left: 10px;
    padding-right: 10px;
  transition: var(--transition);
}

@media screen and (min-width: 580px) {
  .accordion__wrapper {
      padding: 5rem 8rem;
  }.content-filtro{
   
  }
}
.scroll-container {
  width: 100%;
  height: 100%;
  padding: 22px;
  overflow: scroll;
}

/* Para Webkit (Chrome, Safari) */
.scroll-container::-webkit-scrollbar {
  display: none;
}

/* Para Firefox */
.scroll-container {
  scrollbar-width: none;  /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

/* Para IE y Edge */
.scroll-container::-ms-scrollbar {
  display: none;
}

#monto_tarjeta{
        width: 103px;
    height: 50px;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    border-radius: 0.3rem;
}
#pago_parcial{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}#paypal-buttons{
    width: 92%;
}
.modal-terminar{
  z-index: 9999;
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #012e5566;
  top: 0;
}
.terminar-contenedor{
  width: 100%;
  height: 100%;
 display: flex;
 flex-direction: column;
 align-items: center;
 background-color: white;
 justify-content: center;
}.contenedor-pago-tarjeta{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  justify-content: center;


}
.modal-main-terminar{
  width: 100%;
  height: 83%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;

}
.modal-main-efectivo{
  width: 100%;
 
  padding-right: 20px;
  padding-left: 20px;
  height: 82%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 10px;

}
.modal-pago-tarjeta{
  width: 100%;
    padding-right: 10px;
    height: 93%;
    padding-left: 10px;
}
.footer-modal-terminar{
  width: 100%;
  height: 7%;
  display: flex;
  align-items: center;
  justify-content: center;


}.footer-modal-terminar button{
  color: white; 
  font-weight: bold;

  background-color: var(--first-color);
  width: 100%;
  height: 100%;

}

.metodo-pago{
  width: 100%;
  height: 100%;
  display: flex;
  gap: 6px;
  flex-direction: column;
  align-items: center;

}.metodo-pago button{
  width: 44%;
  height: auto;
  border: 2px solid var(--first-color);
  border-radius: 1rem;
  outline: none;
  color: #545454;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
font-weight: 600;
}.metodo-pago button:active{
  background-color: var(--first-color);
  color: white;
}.metodo-pago p{
  font-size: 15px;
  font-weight: 600;
  color: #545454;
}
.detalle-pago{
  width: 100%;
  height: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nombre_cliente{
  width: 100%;
  height: 21%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}.nombre_cliente input{
  width: 100%;
  height: 40px;
  border: 1px solid var(--first-color);
  outline: none;
  color: #545454;
  border-radius: 1rem;
  text-align: center;
}
.nombre_cliente span{
  font-size: 14px;
  color: #545454;
}
.ubicacion{
  width: 100%;
  height: 14%;
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}.ubicacion span{
  font-size: 15px;
  font-weight: 600;
  color: #545454;
}.content-btn-metodo-pago{
  width: 100%;
  height: 100%;
  display: grid;

  flex-direction: column;
  justify-content: center;
  align-items: center;

 grid-template: 
 "tarjeta-content" 20%
 "formu-datos" 70%
 "footer-pago" 10%;
}.tarjeta-content{
    grid-area:tarjeta-content ;
    padding: 10px;
    
}.formu-datos{
    grid-area: formu-datos;
    gap: 10px;
    display: flex
;  padding: 10px;
    flex-direction: column;
}.footer-pago{
    grid-area: footer-pago;
        width: 100%;
    height: 100%;
}

#btn-tarjeta{
    width: 79%;
    height: 60px;
    padding: 10px;
    border: 2px solid var(--first-color);
    border-radius: 1rem;
    outline: none;
    color: #545454;
    background-color: transparent;
    display: block;
    font-size: 14px;
    display: flex
;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.content-comentario{
  width: 100%;
  height: 27%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 13px;
}.content-comentario textarea{
  width: 100%;
  height: 99px;
  border: 1px solid var(--first-color);
  outline: none;
  color: #545454;
  border-radius: 1rem;
  text-align: center;text-align: justify;
  padding: 10px;
}.content-comentario span{
  color: #545454;
  font-size: 14px;
  font-weight: 600;
}
#wf-comentario-edicion{
        background-color: transparent !important;
    border: none !important;
}

div:where(.swal2-container) {
  z-index: 9999 !important;
}

#mapa{
  z-index: 1500;
  position: fixed;
  background: red;
  width: 100%;
  height: 100%;
  display: none;
}
#map {
  height: 100%;
  width: 100vw;
}
.leaflet-container {
  height: 400px;
  width: 600px;
  max-width: 100%;
  max-height: 100%;
}
.header-mapa{
  width: 100%;
height: 20%;
display: flex;
justify-content: center;
align-items:center ;
flex-direction: column;
}.mostrar_mapa{
  width: 100%;
  height: 80%;
}.header-mapa button{
  width: 140px;
  height: 50px;
  border-radius: 1rem;
  outline: none;
  border: none;
  color: white;
  background-color: var(--color-botones);
}h2{
  color: white;
}
.map-container {
display: none; /* Oculta el contenedor del mapa */
}.contenedor-estatus{
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
 
}.card-estatus{
  width: 90%;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
  box-shadow: 5px 60px 105px 7px rgb(9 40 163 / 9%);
}.card-estatus span:nth-last-child(2){
  font-size: 19px;
  color: black;
  font-weight: 600;
}.card-estatus span:nth-last-child(1){
  font-size: 14px;
  color: #545454;
}.color_pasado{
  background-color:#d3d3d370 !important;
  transform: scale(1);
  transition: all 1s;
}.color_ahora{
  background-color: var(--first-color) !important;
  transform: scale(1.1);
  transition: all 1s;
 
}.color_ahora span:nth-last-child(1)
{
  color: rgb(255, 255, 255);
}
.color_ahora span:nth-last-child(2)
{
  color: rgb(31, 31, 31);
}.content-qr{
  width: 100%;
  height: 45%;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}#txt-qr-msg{
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: var(--title-color);
}
/* card items carrito */
.lista-item{
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: flex-start;
  overflow-y: scroll;
}

.card-items{
  width: 100%;
  height: 96px;
  background-color: var(--container-color);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  box-shadow: 0px 60px 56px -12px rgba(9, 40, 163, 0.05);;
   padding-left: 10px;

}.content-info{
  width: 87%;
  height: 100%;
  display: flex;
  flex-direction: column;

}.btn-acciones{
  width: 100%;
  height: 67%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  padding: 10px;
}
.btn-acciones button{
  width: 40px;
  height: 40px;
  outline: none;
  border: none;
  border-radius: 0.5rem;
  color: black;
}.content-info span{
  color: black;
  font-size: 15px;
  font-weight: 500;
  margin-top: 16px;
}.content-delete{
  width: 13%;
}.money{
  font-size: 15px !important;
  color: var(--first-color) !important;
  font-weight: 600 !important;
}.content-delete i{
  color: var(--first-color) !important;

}
/*fin*/
/* ingredientes y condimentos*/
.btn-content{
  width: 130px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  flex-direction: row;
  box-shadow:1px 16px 28px -15px #0000006b;
}
button{
  outline: none;
  border: none;
  
}
.btn-content button:nth-child(1){
width: 100%;
height: 100%;
color: #535360;
border-radius: 0.3rem;
background-color: #d2d4e175;
}
.btn-content button:nth-child(2) i{
  color: white;
}.activar_select{
  background: var(--first-color) !important;
  color: white !important;
  box-shadow: 1px 15px 50px -12px #012e5566 !important;
}
.no_select{
  border-radius: 0.5rem !important;
  background: #d2d4e175 !important;
}.btn-content:active{
  background-color: var(--first-color) !important;
}
/*fin*/
/* alert */

.alert-box {
	padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;  
  position:absolute;
  top:116px;
  right:10px;
}

.success {
  color: var(--first-color);
  background-color: var(--transparent-color);
    border-color: #d6e9c6;
    display: none;
    font-size: 15px;
   
}


    .message {
      display: none;
      opacity: 0;
      transition: opacity 0.7s ease-in-out;
    }

    .message.show {
      display: block;
      opacity: 1;
      width: 50%;
      height: 77px;
      padding: 10px;
      text-align: center;
   border-radius: 0.4rem;
    }

/*fin*/
/* animacion caja*/

.producto{
  background-color:#ffffff;
  justify-content: center;
  width: 60px;
  height: 60px;
  display: none;
  align-items: center;
 
  color: #ff6c00;
  border-radius: 6rem;
  position: fixed;
  bottom: 94px;
  z-index: 1000;
  right: 6px;
}.producto i{
  font-size: 1.25rem !important;
  color: #5c5c5c !important;
}
/**/
/*boton flotante*/

.content-flotante{
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--first-color);
  position: fixed;
  bottom: 94px;
  z-index: 1000;
  right: 6px;
  padding: 0 !important;
  border-radius: 6rem;
  box-shadow: var(--shadow);
}.content-flotante i{
  font-size: 1.25rem;
  color: white;
  cursor: pointer;
  display: flex;
  position: fixed;
  transition: .3s;
}.conteo-items{
  position: relative;
  right: -17px;
  top: -20px;
  width: 28px;
  padding: -9px;
  height: 28px;
  background: red;
  display: flex;
  text-align: center;
  align-items: center;
  border-radius: 6rem;
  color: white;
  /* padding: 6px; */
  /* padding-left: 3px; */
  font-size: 16px;
  text-align: center;
  /* padding-right: 3px; */
  justify-content: center;
}
.content-btn-carro{
  width: 33px;
    height: 24px;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 1.25rem;
    color: var(--title-color);
    cursor: pointer;
    transition: .3s;
    display: flex;
    flex-direction: column;
}.punto-btn-carro{
  position: relative;
  right: -11px;
  top: 9px;
  width: 16px;
  padding: -9px;
  height: 16px;
  background: red;
  display: flex;
  text-align: center;
  align-items: center;
  border-radius: 6rem;
  color: white;
  /* padding: 6px; */
  /* padding-left: 3px; */
  font-size: 11px;
  text-align: center;
  /* padding-right: 3px; */
  justify-content: center; 
}
/**/

.bolsa-vacia{
  font-size: 100px;
}.centrar{
  
    align-content: center;
    justify-content: center;
    gap: 50px !important;
}

.card-espera{
  width: 90%;
  height: 50%;
background-color:transparent;  
}
.mainCss {
  width: 100%;
  height: 300px;
}

.dotsCss {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.dot {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 20px;
  transform: translate(0px, -40px);
  animation: bounce 1s infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0% {
    transform: translate(0px, -10px);
  }
  40% {
    width: 0px;
    height: 2px;
    transform: translate(0px, 40px) scale(1.7);
  }
  100% {
    height: 20px;
    transform: translate(0px, -20px);
  }
}

@media screen and (min-height: 667px) {

 .modal-main-terminar{
  height: 90%;
 }
 #btn-tarjeta{
  top: 71px;
 
 }
 .css-1nj8iua-FloatingLabelInputElement-FloatingLabelInput {

height: 41px !important;
 }
 .css-aezqgw-button-Button {
 margin-bottom: 10px !important;
  height: 39px !important;
 }
}
.pos-tarjeta{
  
    display:block !important;
    position: absolute;
    top: 83px;
    width: 92% !important;
    padding: 0 !important;
    border:none !important;
  
}.remove-pos-tarjeta{
  display: none !important;

}
#btn-efectivo{
  width: 79%;
  padding: 20px !important;
}

#btn-terminal{
  width: 79%;
  padding: 20px !important;
}

.modal-espera{
  width: 100%;
  height: 100%;
  z-index:19000;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #012e5566;

}.card-espera{
  width: 90%;
  height: 50%;
background-color:transparent;  
}
.mainCss {
  width: 100%;
  height: 300px;
}

.dotsCss {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.dot {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 20px;
  transform: translate(0px, -40px);
  animation: bounce 1s infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0% {
    transform: translate(0px, -10px);
  }
  40% {
    width: 0px;
    height: 2px;
    transform: translate(0px, 40px) scale(1.7);
  }
  100% {
    height: 20px;
    transform: translate(0px, -20px);
  }
}
.modal-manual{
  width: 100%;
  height: 100%;
  background-color:var(--transparent-color);
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}.card-manual{
  width: 90%;
  height: 98%;
  border-radius: 1rem;
  background-color: white;
  display: flex;
 justify-content: center;
 align-items: center;
 box-shadow: var(--shadow);
 flex-direction: column;
 padding: 10px;
}
.card-header{
  width: 100%;
  height: 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  gap: 3px;
}.card-body{
width: 100%;
height: 80%;
justify-content: center;
}.card-header button{
  width: 150px;
    height: 50px;
    color: #272424;
    background-color: transparent;
    outline: none;
    border-radius: 0.5rem;

}.botones-header{
  width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 10px;
    border-radius: 0.5rem;
    background: #cfcfcf;
}.card-header span{
  font-size: 15px;
  color: black;
  font-weight: 600;
}.card-footer-manual{
  width: 100%;
  height: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--first-color);
}.card-footer-manual button{
  width: 150px;
  height:auto;
  color: white;
  background-color: var(--first-color);
  border: none;
  outline: none;
  border-radius: 0.5rem;
}.instruccion{
  width: 100%;
  gap: 86px;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  margin-top: 23px;
  margin-bottom: 23px;
  height: 561px;
}.item-instruccion{
  width: 100%;
  height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}.item-instruccion p{
  font-size: 17px;
}.item-instruccion span{
  font-size: 15px;
  font-weight: 600;
}.select-tap{
  color: black !important;
  background: white !important;
  transition: all 2s;
}
@media screen and (min-height: 665px) {

.card-header{
height: 15%;
}.card-body{
  height: 80%;
}.card-footer-manual{
  height: 6%;
}

.instruccion{
  height: 459px;
}
}
@media screen and (min-height: 800px) {
  .instruccion{
    height: 91%;
  }.card-manual{
    padding: 22px;
  }.card-footer-manual button{
  font-size: 19px;
  }
  .item-instruccion span{
    font-size: 23px;
  }.item-instruccion p{
    font-size: 22px;
  }.card-header span{
    font-size: 26px;
  }
.card-header button{
  font-size: 17px;
  width: 200px
  ;
}#paypal-buttons{
    height: 748px !important;
}
}
@media screen and (min-height: 897px) {
   #paypal-buttons{
    height: 819px !important;
} 
    
    
}
.modal-scanner{
  width: 100%;
  height: 100%;
  background-color: #012e5566;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;

}.card-scanner{
  width: 80%;
  height: 56%;
  background-color: white;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 0.5rem;
}
.card-header-scanner{
width: 100%;
height: 10%;
display: flex;
justify-content: center;
align-items: center;

}
.card-header-scanner span{
  font-size: 16px;
  font-weight: 600;
}
.card-body-scanner{
width: 100%;
height: 60%;

}
.card-footer-scanner{
  width: 100%;
  height: 24%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.card-footer-scanner span{
  font-size: 14px;
  font-weight: 600;
}
.card-footer-scanner button{
  width: 80%;
  height: 39px;
  outline: none;
  border: none;
  border-radius: 0.5rem;
  background-color: var(--first-color);
  font-size: 15px;
  box-shadow: var(--shadow);
  color: white;
}#canva{
  width: 100%;
}

#desglose{
  width: 100%;
  height: auto;
  gap: 10px;
  display: flex;
  flex-direction: column;
  background-color: var(--first-color);
}.modal-desglose{
  width: 100%;
  height: 100%;
  background-color: #012e5566;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;

}.card-desglose{
 width: 80%;
 height: 56%;
 border-radius: 2.4rem;
 background-color: white;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;

}#desglosando{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-left: 10px;
  gap: 10px;
  padding-right: 10px;
  
}#desglosando span{
  color: var(--first-color);
  padding: 10px;
  background: #e3e0e000;
  transition: all 4s ease-in-out;
  font-weight: 500;
  border-radius: 0.8rem;
}
.pulse {
  animation: pulse-animation 2s infinite;
  transform: scale(1.3) 2s;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px var(--first-color);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
.card-header-desglose{
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color:transparent;
  position: relative;
}
.span-icono-promo{
  font-size: 58px;
    color: var(--first-color);
    position: absolute;
    filter: drop-shadow(-7.5px 6.5px 19px #ff0032);

}.span-icono-centro{
  font-size: 58px;
    background: var(--title-color);
    color: white;
    border-radius: 0.5rem;
    position: absolute;
    top: -32px;
   filter: drop-shadow(1.5px 6.5px 5px #9d9d9c);
}
.item-instruccion img{
  width: 90%;
  height: 100%;
  object-fit: cover;
}
.content-btn-reparto{
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.content-btn-reparto button{
  width: 90%;
  height: 50px;
  text-align: center;
  color: rgb(0, 0, 0);
  outline: none;
  border: 1px solid var(--first-color);
  border-radius: 1rem;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
 gap: 10px;
}.content-btn-reparto button img{
  width: 50px;
  height: 48px;
  object-fit: contain;
}.content-btn-reparto span{
  font-size: 14px;
  font-weight: 600;
  color: #545454;
}
.select_repartidor{
  background-color: var(--first-color) !important;
  color: white !important;
}
.select_repartidor img{
  width: 46px !important;
    height: 44px !important;
    object-fit: contain !important;
    background: white !important;
    color: white !important;
    border-radius: 4rem !important;
}#btn-regresar{
  width: 100px;
  height: 50px;
  border: none;
  font-size: 14px;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 6px;

}#btn-regresar i{
  font-size: 22px;
}
.btn-destino{
    width:40%;
    height:50px;
    border: none;
  font-size: 14px;
  border-radius:1rem;
  color:black;
  text-align:center;
    
}.content-botones-destino{
    width:100%;
    height:100%;
     display: flex;
  align-items: center;
   justify-content: center;
   gap:10px;
    
}.active_btn_destino{
    background:var(--first-color);
}.content-input{
  height:70px;
  width: 85%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: hsl(207, 8%, 92%);;
  border-radius: 1rem;

}.content-input span{
  font-size: 14px;
}
.content-input input{
  width:100%;
  height: 100%;
  border-radius: 0.1rem;
  border: none;
  outline: none;
  text-align: center;
  background-color: transparent;
  font-size: 15px;
}
.content-input-destino{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
    align-items: center;

}.flex-row{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


.content-formu-online{
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
        gap: 28px;
        padding: 10px;
}.content-formu-online span{
    font-size: 15px;
    font-weight: 500;
}

.border-input{
    width: 100%;
    height: 67px;
    background: red;
    display: flex;
    border-radius: 0.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
}
.border-input span{
    font-size: 15px;
    font-weight: 500;
}
.border-input input{
        border: none;
    outline: none;
    width: 100%;
    height: 41px;
    padding: 10px;
    text-align: center;
    font-size:15px;
    background: transparent;
}
.content-formu-online input{
        border: none;
    outline: none;
    width: 100%;
    height: 41px;
    padding: 10px;
    text-align: center;
    font-size:15px;
    background: transparent;
}.border-input textarea{
        width: 100%;
    height: 141px;
    border: none;
    background: transparent;
    padding: 10px;
    outline: none;
}.botones-online-content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 21px;
}


.btn-online-cancel{
    width: 50% !important;
    height: 50px !important;
    border: none !important;
    outline: none !important;
    color: white !important;
    background: black !important;
    
}.btn-online-pagar{
    width: 50% !important;
    height: 50px !important;
    border: none !important;
    outline: none !important;
    color: white !important;
    background:var(--first-color) !important;
    
}.btn-categoria{
    width: 120px;
    height: 48px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    outline: none;
    border: 2px solid var(--first-color);
    gap: 13px;
    flex-direction: column;
    border-radius: 1rem;
    font-family: "Satoshi", sans-serif;
}




.content-info-tienda{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;}

.content-item-producto{
        width: 100%;
    display: flex;
    flex-direction: column;
}/* =========================================================
   WF PREMIUM PRODUCT GRID
   ========================================================= */

#productos {

    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;

    padding: 8px 10px 30px;

    align-content: start;

}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.wf-product-card {

    position: relative;

    width: 100%;

    min-width: 0;

    background: var(--container-color);

    border-radius: 20px;

    overflow: hidden;

    cursor: pointer;

    border: 1px solid rgba(0, 0, 0, .045);

    box-shadow:
        0 3px 12px rgba(0, 0, 0, .055),
        0 12px 30px rgba(0, 0, 0, .035);

    transform: translateZ(0);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;

    -webkit-tap-highlight-color: transparent;

}


/* =========================================================
   HOVER DESKTOP
   ========================================================= */

@media (hover: hover) {

    .wf-product-card:hover {

        transform: translateY(-4px);

        box-shadow:
            0 8px 24px rgba(0, 0, 0, .09),
            0 18px 42px rgba(0, 0, 0, .06);

        border-color: rgba(0, 0, 0, .08);

    }

}


/* =========================================================
   CLICK MOBILE
   ========================================================= */

.wf-product-card:active {

    transform: scale(.975);

}


/* =========================================================
   IMAGE
   ========================================================= */

.wf-product-image {

    position: relative;

    width: 100%;

    aspect-ratio: 1 / .82;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f5f5f5,
            #eeeeee
        );

}


.wf-product-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1);

}


@media (hover: hover) {

    .wf-product-card:hover
    .wf-product-image img {

        transform: scale(1.045);

    }

}


/* =========================================================
   IMAGE SHADE
   ========================================================= */

.wf-product-image-shade {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 55%,
            rgba(0,0,0,.16) 100%
        );

}


/* =========================================================
   NO IMAGE
   ========================================================= */

.wf-product-no-image {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #b8b8b8;

    font-size: 32px;

}


/* =========================================================
   PROMO
   ========================================================= */

.wf-product-promo {

    position: absolute;

    top: 10px;

    left: 10px;

    max-width: calc(100% - 20px);

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 10px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .94);

    color: #e11d48;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .15px;

    box-shadow:
        0 4px 14px rgba(0,0,0,.13);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    z-index: 3;

}


.wf-product-promo-icon {

    width: 17px;

    height: 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffe4ea;

    color: #e11d48;

    flex-shrink: 0;

}


.wf-product-promo-icon i {

    font-size: 10px;

}


.wf-product-promo-text {

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

}


/* =========================================================
   STOCK
   ========================================================= */

.wf-product-stock {

    position: absolute;

    bottom: 10px;

    left: 10px;

    z-index: 3;

}


.wf-badge-stock {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 6px 9px;

    border-radius: 999px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .1px;

    color: #fff;

    box-shadow:
        0 3px 12px rgba(0,0,0,.15);

}


.wf-badge-stock i {

    font-size: 10px;

}


.wf-badge-stock-naranja {

    background:
        rgba(234, 88, 12, .94);

}


.wf-badge-stock-rojo {

    background:
        rgba(220, 38, 38, .95);

}


/* =========================================================
   PRODUCT INFO
   ========================================================= */

.wf-product-info {

    padding: 12px 12px 11px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    min-width: 0;

}


.wf-product-main {

    min-width: 0;

}


.wf-product-name {

    margin: 0;

    color: var(--title-color);

    font-size: 14px;

    line-height: 1.25;

    font-weight: 750;

    letter-spacing: -.2px;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}


.wf-product-description {

    margin: 5px 0 0;

    color: var(--text-color);

    opacity: .72;

    font-size: 10.5px;

    line-height: 1.35;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}


/* =========================================================
   BOTTOM
   ========================================================= */

.wf-product-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;

}


.wf-product-price {

    display: flex;

    align-items: baseline;

    gap: 1px;

    color: var(--title-color);

    font-size: 18px;

    font-weight: 850;

    letter-spacing: -.5px;

}


.wf-product-price-symbol {

    font-size: 12px;

    font-weight: 750;

    opacity: .75;

}


/* =========================================================
   ADD BUTTON
   ========================================================= */

.wf-product-add {

    width: 34px;

    height: 34px;

    border: none;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--first-color);

    color: #fff;

    font-size: 19px;

    cursor: pointer;

    box-shadow:
        0 5px 14px rgba(255, 0, 50, .20);

    transition:
        transform .18s ease,
        box-shadow .18s ease;

}


.wf-product-add:active {

    transform: scale(.88);

}


@media (hover: hover) {

    .wf-product-add:hover {

        transform: scale(1.07);

        box-shadow:
            0 7px 18px rgba(255, 0, 50, .28);

    }

}


/* =========================================================
   EMPTY
   ========================================================= */

.wf-empty-products {

    grid-column: 1 / -1;

    width: 100%;

    min-height: 280px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    padding: 40px 25px;

}


.wf-empty-products-icon {

    width: 68px;

    height: 68px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 16px;

    background:
        rgba(0,0,0,.045);

    color:
        var(--text-color);

    font-size: 27px;

}


.wf-empty-products h3 {

    margin: 0;

    color: var(--title-color);

    font-size: 17px;

}


.wf-empty-products p {

    max-width: 280px;

    margin-top: 7px;

    color: var(--text-color);

    opacity: .65;

    font-size: 12px;

    line-height: 1.5;

}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (min-width: 576px) {

    #productos {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 16px;

        padding-left: 14px;

        padding-right: 14px;

    }


    .wf-product-name {

        font-size: 15px;

    }

}


/* =========================================================
   DESKTOP
   ========================================================= */

@media screen and (min-width: 992px) {

    #productos {

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        gap: 18px;

        padding-left: 20px;

        padding-right: 20px;

    }


    .wf-product-info {

        padding: 14px;

    }


    .wf-product-name {

        font-size: 15px;

    }


    .wf-product-price {

        font-size: 19px;

    }

}


/* =========================================================
   DARK MODE
   ========================================================= */

.dark-theme .wf-product-card {

    background:
        var(--container-color);

    border-color:
        rgba(255,255,255,.055);

    box-shadow:
        0 5px 20px rgba(0,0,0,.20),
        0 15px 40px rgba(0,0,0,.12);

}


.dark-theme .wf-product-image {

    background:
        #1b1d20;

}


.dark-theme .wf-product-promo {

    background:
        rgba(35,35,38,.94);

    color:
        #ff5577;

    border:
        1px solid rgba(255,255,255,.06);

}


.dark-theme .wf-product-promo-icon {

    background:
        rgba(255,0,50,.13);

    color:
        #ff5577;

}


.dark-theme .wf-empty-products-icon {

    background:
        rgba(255,255,255,.06);

}
