@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --text-dark: hsl(240, 54%, 15%);
  --text-light: hsl(242, 18%, 64%);
  --primary: hsl(222, 98%, 60%);
  --primary-lighter: hsl(240, 33%, 86%);
  --primary-gradient: linear-gradient(to right, #3671fd, #6f31ff);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,
button {
  all: unset;
  cursor: pointer;
}

img {
  width: 100%;
  height: 100%;
  display: block;
}

body {
  font-family: Poppins, sans-serif;
  min-height: 100vh;
  background-color: #f5f9ff;
}

.container {
  max-width: 1500px;
  width: 100%;
  display: flex;
  margin-inline: 1rem;
  margin: 0 auto;
}

.image-section {
  width: 50%;
  position: relative;
}
.image-wrapper {
  width: 100%;
  height: 100%;
}
.image-wrapper img {
  object-fit: cover;
}

.content-container {
    background-color: hsl(0deg 0% 100% / 35%);
    backdrop-filter: blur(30px);
    padding: 4rem 2rem;
    width: 80%;
    color: hsl(0deg 0% 100%);
    border-radius: 18px;
    border: 1px solid hsl(0 100% 100% / 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: left;
    transform: translate(-50%, -50%);
}
.content-container span {
    -webkit-background-clip: text;
    color: white;
    background: #82932e;
    font-weight: 900;
    padding: 0 2rem;
}
.content-container h1 {
    font-weight: 400;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

@media screen and (max-width: 50rem) {
    .content-container {
        inset: 0;
        transform: translate(0, 0);
        padding: 1rem 1.6rem;
        text-align: center;
        display: flex
;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 0;
        background-color: hsl(0deg 0% 100% / 2%);
    }
}



.form-section {
  width: 50%;
  background-color: white;
  padding: 2.5rem 1rem;
  display: flex;
  align-items: center;
}

.form-wrapper {
  width: 75%;
  margin: 0 auto;
}

.logo-container {
  width: 50%;
  margin-bottom: 2.2rem;
}

.form-wrapper > h2 {
  margin-bottom: 0.1rem;
}
.form-wrapper > p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.input-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: contents;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0.2rem;
  max-width: 1000px;
  margin:  0 auto;
}
.form-group-1 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0.2rem;
  max-width: 1000px;
  margin:  0 auto;
}
.form-group  label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #16164d;
}
.form-group input {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem;
  border: 2px solid var(--primary-lighter);
  border-radius: 0.3rem;
}
.form-group input:focus {
  border: 2px solid #16164d;
}
/**/
.form-group-1  label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #16164d;
}
.form-group-1 input {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem;
  border: 2px solid var(--primary-lighter);
  border-radius: 0.3rem;
}
.form-group-1 input:focus {
  border: 2px solid #16164d;
}

.remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.remember-me {
  display: grid;
  grid-template-columns: 1rem auto;
  gap: 0.6rem;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  display: grid;
  place-content: center;
}

.remember-me input {
  width: 1rem;
  height: 1rem;
  margin-right: 0.3rem;
  border: 1px solid var(--text-light);
  border-radius: 2px;
}

input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  background-color: white;
  transform: scale(0);
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}
.remember-me input:checked {
  background: var(--primary-gradient);
}

.remember-me label {
  color: var(--text-dark);
  user-select: none;
}
.remember-forgot a {
  color: var(--primary);
}
.remember-forgot a:hover {
  text-decoration: underline;
  text-decoration-color: var(--primary);
}

.login-btn,
.google-signin {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;

  font-weight: 500;
  padding: 0.5rem 0;
  border-radius: 0.5rem;
}

.login-btn {
    color: white;
    background: #8fa33f;
}
.login-btn:hover {
  opacity: 0.9;
}

.or-divider {
  width: 100%;
  font-weight: 600;
  color: var(--text-light);
  margin-block: 1.5rem;
  text-align: center;
  position: relative;
}
.or-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  width: 45%;
  background-color: var(--text-light);
}
.or-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  width: 45%;
  background-color: var(--text-light);
}

.google-signin {
  border: 2px solid var(--primary-lighter);
}
.google-signin object {
  width: 1.5rem;
  height: 1.5rem;
}

@media screen and (max-width: 50rem) {
  .container {
    max-width: 90%;
    flex-direction: column;
    margin-inline: 0;
    margin: 0 auto;
  }

  .image-section,
  .form-section {
    width: 100%;
  }

  .image-section {
    height: 25vh;
  }
  .content-container {
    inset: 0;
    transform: translate(0, 0);
    padding: 1rem 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .content-container h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .content-container p {
    font-size: 0.75rem;
  }

  .form-section {
    flex: 1;
    padding: 1rem 1rem;
  }
  .logo-container {
    margin-bottom: 1rem;
  }
  .form-wrapper > h2 {
    font-size: 1.25rem;
  }
  .form-wrapper > p {
    margin-bottom: 1rem;
  }
  .form-wrapper button {
    font-size: 0.875rem;
  }
  .or-divider {
    font-weight: 500;
    margin-block: 0.6rem;
  }
}

@media screen and (max-width: 36.25rem) {
  .container {
    max-width: 100%;
  }
  .form-wrapper {
    width: 100%;
  }
  .remember-forgot{
    display: block;
  }
  .remember-me{
    margin-bottom: 2rem;
  }
}

/*animaciones*/
.scale-up-center{animation:scale-up-center ease 0.9s; } 
@keyframes scale-up-center{ 0%{transform:scale(.5)} 100%{transform:scale(1)} }


.slide-right{animation:slide-right 0.5s ease both ;animation-delay: 0.8s;}
@keyframes slide-right{0%{transform:translateX(-1000px)}100%{transform:translateX(0px)}}

/*Navbar base*/
.navbar {
  height: 90px;
  background-color: transparent;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1000;
}
.logo{
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo i {
  color: #0aa5ff;
  font-size: 22px;
}
.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #707070;
  margin-left: 12px;
}
.logo p {
  margin-bottom: 0;
  margin-left: 12px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu-links {
  display: flex;
  gap: 24px;
  border-right: 1px solid #999999;
  padding-inline: 24px;
}

.menu-links a {
  font-weight: 500;
  color: #999999;
  padding: 8px 16px;
  transition: color 0.3s ease;
}
.menu-links a:hover {
  color: #1f7df1;
}
.log-in {
  font-weight: 500;
  padding: 12px 22px;
  background-color: transparent;
  color: #999999;
  border-radius: 10px;
  border: 2px solid #1f7df1;
  transition: background-color 0.3s, color 0.3s;
}
.log-in:hover {
  background-color: #1f7df1;
  color: white;
}

/*Menu button hamburguesa*/
.menu-btn {
  padding: .6rem .5rem;
  border-radius: 5px;
  display: none;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
  background-color: #1f7df1;
}
.btn-line {
  width: 30px;
  margin: 5px 0;
  height: 3px;
  background-color: white;
  transition: 0.4s ease;
}

/*Animación a X*/
.menu-btn.open .btn-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-btn.open .btn-line:nth-child(2) {
  opacity: 0;
}
.menu-btn.open .btn-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/*Responsive behavior*/
@media (max-width: 1076px) {
  .menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #111;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }


  .menu.show {
    transform: translateX(0);
  }

  .menu-links {
    flex-direction: column;
    border: none;
    text-align: center;
    padding: 0;
  }

  .menu-links a {
    font-size: 24px;
    padding: 16px;
    color: #ccc;
  }

  .log-in {
    margin-top: 20px;
    padding: 14px 28px;
    font-size: 18px;
  }

  .menu-btn {
    display: block;
  }
}
.logo-menu-nav{
  width: 55px;   
  display: flex;
}


/*home*/
.cont-info-home{
  width: 100%;
  padding: 20px 40px;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inf-alum-home{
  width: 47%;
  padding: 60px 40px;
  border-radius: 15px;
  background-color: white;
  min-height: 300px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 3rem;

}
.nombre-alumno{
  font-size: 2rem;
  font-weight: 600;
  color: #707070;
}
.nombre-alumno-2{
  font-size: 2rem;
  font-weight: 600;
  color: #707070;
  margin: 0rem auto;
  text-align: center;
}
.comidas{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.comidas svg{
  margin-right: 1rem;
}
.inf-alum-home-2{
  width: 47%;
  border-radius: 15px;
  display: flex;
  align-items: end;
  min-height: 300px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: linear-gradient(#1f7ef100, #1f7df1), url(img/bg-menu.jpg);
  transition: all ease .5s;
  background-position: center center;
  background-size: cover;
  margin-bottom: 3rem;

}
.inf-alum-home-2:hover{
  scale: 1.03;
}
.inf-alum-home-2 span{
  margin: 40px 40px;
}
.inf-alum-home-2 span p{
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.inf-alum-home-3{
  width: 47%;
  border-radius: 15px;
  display: flex;
  align-items: end;
  min-height: 300px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: linear-gradient(#1f7ef100, #ff9100), url(img/bg-agendar.jpg);
  transition: all ease .5s;
  background-position: center center;
  background-size: cover;
  margin-bottom: 3rem;

}
.inf-alum-home-3:hover{
  scale: 1.03;
}
.inf-alum-home-3 span{
  margin: 40px 40px;
}
.inf-alum-home-3 span p{
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}
.inf-alum-home-4{
  width: 47%;
  border-radius: 15px;
  display: flex;
  align-items: end;
  min-height: 300px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: linear-gradient(#1f7ef100, #7a1ff1), url(img/bg-comprar.jpg);
  transition: all ease .5s;
  background-position: center center;
  background-size: cover;
  margin-bottom: 3rem;

}
.inf-alum-home-4:hover{
  scale: 1.03;
}
.inf-alum-home-4 span{
  margin: 40px 40px;
}
.inf-alum-home-4 span p{
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}
.inf-alum-home-5{
  width: 47%;
  border-radius: 15px;
  display: flex;
  align-items: end;
  min-height: 300px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: linear-gradient(#1f7ef100, #ff9100), url(img/reportes-bg.webp);
  transition: all ease .5s;
  background-position: center center;
  background-size: cover;
  margin-bottom: 3rem;

}
.inf-alum-home-5:hover{
  scale: 1.03;
}
.inf-alum-home-5 span{
  margin: 40px 40px;
}
.inf-alum-home-5 span p{
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}
.inf-alum-home-6{
  width: 47%;
  border-radius: 15px;
  display: flex;
  align-items: end;
  min-height: 300px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: linear-gradient(#1f7ef100, #1f7df1), url(img/padres-bg.webp);
  transition: all ease .5s;
  background-position: center center;
  background-size: cover;
  margin-bottom: 3rem;

}
.inf-alum-home-6:hover{
  scale: 1.03;
}
.inf-alum-home-6 span{
  margin: 40px 40px;
}
.inf-alum-home-6 span p{
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}
.inf-alum-home-7{
  width: 47%;
  border-radius: 15px;
  display: flex;
  align-items: end;
  min-height: 300px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: linear-gradient(#1f7ef100, #ff9100), url(img/reportes-bg.webp);
  transition: all ease .5s;
  background-position: center center;
  background-size: cover;
  margin-bottom: 3rem;

}
.inf-alum-home-7:hover{
  scale: 1.03;
}
.inf-alum-home-7 span{
  margin: 40px 40px;
}
.inf-alum-home-7 span p{
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}
.inf-alum-home-8{
  width: 47%;
  border-radius: 15px;
  display: flex;
  align-items: end;
  min-height: 300px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: linear-gradient(#1f7ef100, #7a1ff1), url(img/grupos-bg.webp);
  transition: all ease .5s;
  background-position: center center;
  background-size: cover;
  margin-bottom: 3rem;

}
.inf-alum-home-8:hover{
  scale: 1.03;
}
.inf-alum-home-8 span{
  margin: 40px 40px;
}
.inf-alum-home-8 span p{
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

@media (max-width: 1076px) {
  .inf-alum-home{
    width: 100%;
  }
}
@media (max-width: 844px) {
  .inf-alum-home-2{
    width: 100%;
  }
  .inf-alum-home-3{
    width: 100%;
  }
  .inf-alum-home-4{
    width: 100%;
  }
    .inf-alum-home-5{
    width: 100%;
  }
    .inf-alum-home-6{
    width: 100%;
  }
    .inf-alum-home-7{
    width: 100%;
  }
    .inf-alum-home-8{
    width: 100%;
  }
}
@media (max-width: 480px){
  .logo a{
    font-size: 1rem;
  }
  .logo p{
    font-size: .8rem;
  }
  .nombre-alumno{
    font-size: 1.5rem;
  }
  .nombre-alumno-2{
    font-size: 1.5rem;
  }
  .inf-alum-home{
    	min-height: fit-content;
      margin-bottom: 2rem;
  }
  .inf-alum-home-2{
    min-height: fit-content;
    
    margin-bottom: 2rem;
  }
  .inf-alum-home-3{
    min-height: fit-content;
    
    margin-bottom: 2rem;
  }
  .inf-alum-home-4{
    min-height: fit-content;
    margin-bottom: 2rem;
  }
    .inf-alum-home-5{
    min-height: fit-content;
    
    margin-bottom: 2rem;
  }
    .inf-alum-home-6{
    min-height: fit-content;
    
    margin-bottom: 2rem;
  }
    .inf-alum-home-7{
    min-height: fit-content;
    
    margin-bottom: 2rem;
  }
    .inf-alum-home-8{
    min-height: fit-content;
    margin-bottom: 2rem;
  }
  .cont-info-home{
    padding: 20px 10px;
  }
  .navbar{
    padding: 20px 10px;
  }
  .inf-alum-home-2 span p {
    font-size: 1.2em;
    font-weight: 600;
    color: white;
}
.inf-alum-home-3 span p {
  font-size: 1.2em;
  font-weight: 600;
  color: white;
}
.inf-alum-home-4 span p {
  font-size: 1.2em;
  font-weight: 600;
  color: white;
}
.inf-alum-home-5 span p {
  font-size: 1.2em;
  font-weight: 600;
  color: white;
}
  .inf-alum-home-6 span p {
    font-size: 1.2em;
    font-weight: 600;
    color: white;
}
.inf-alum-home-7 span p {
  font-size: 1.2em;
  font-weight: 600;
  color: white;
}
.inf-alum-home-8 span p {
  font-size: 1.2em;
  font-weight: 600;
  color: white;
}
}
/*menu*/
.pdf-slider-container {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.pdf-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  width: 100%; /* Ajusta esto según número de slides (3 slides = 300%) */
}

.slide {
  flex: 0 0 100%;
  height: 100%;
}

.slide iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.slider-btn {
  background-color:#EBEBEB;
  color: #707070;
  border: none;
  padding: 7px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s;
}

.slider-btn:hover {
  background-color: #3671fd;
  color: white;
}

.cont-semana{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.cont-semana p {
  text-align: center;
}
.prev {
  margin-right: 10px;
}
.next {
  margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .pdf-slider-container {
    height: auto;
  }
}
@media (max-width: 768px) {
.alergia{
  text-align: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
embed{
  height: 400px;
}
}

.alergia{
  background-color: #ffd8d8;
  display: flex;
  align-items: center;
  padding: 20px;
  width: fit-content;
  border-radius: 10px;
  margin: 0 auto;
}
.alergia p{
  margin-left: 1rem;
  
}


/*compra*/
/* From Uiverse.io by Bodyhc */ 
.checkbox-wrapper-16 *,
  .checkbox-wrapper-16 *:after,
  .checkbox-wrapper-16 *:before {
  box-sizing: border-box;
}

.checkbox-wrapper-16 .checkbox-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile {
  border-color: #2260ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #2260ff;
}

.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: #2260ff;
  border-color: #2260ff;
}

.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile .checkbox-icon,
  .checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile .checkbox-label {
  color: #2260ff;
}

.checkbox-wrapper-16 .checkbox-input:focus + .checkbox-tile {
  border-color: #2260ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}

.checkbox-wrapper-16 .checkbox-input:focus + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-wrapper-16 .checkbox-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7rem;
  min-height: 7rem;
  border-radius: 0.5rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
  margin: 1rem;
}

.checkbox-wrapper-16 .checkbox-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.checkbox-wrapper-16 .checkbox-tile:hover {
  border-color: #2260ff;
}

.checkbox-wrapper-16 .checkbox-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-wrapper-16 .checkbox-icon {
  transition: 0.375s ease;
  color: #494949;
}

.checkbox-wrapper-16 .checkbox-icon svg {
  width: 3rem;
  height: 3rem;
}

.checkbox-wrapper-16 .checkbox-label {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
}
.semana-select{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}


/*advertencia*/
/* From Uiverse.io by Bodyhc */ 
.checkbox-wrapper-16-des *,
  .checkbox-wrapper-16-des *:after,
  .checkbox-wrapper-16-des *:before {
  box-sizing: border-box;
}

.checkbox-wrapper-16-des .checkbox-input-des {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.checkbox-wrapper-16-des .checkbox-input-des:checked + .checkbox-tile-des {
  border-color: #ff4343;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #ff4343;
}

.checkbox-wrapper-16-des .checkbox-input-des:checked + .checkbox-tile-des:before {
  transform: scale(1);
  opacity: 1;
  background-color: #ff4343;
  border-color: #ff4343;
}

.checkbox-wrapper-16-des .checkbox-input-des:checked + .checkbox-tile-des .checkbox-icon-des,
  .checkbox-wrapper-16-des .checkbox-input-des:checked + .checkbox-tile-des .checkbox-label-des {
  color: #ff4343;
}

.checkbox-wrapper-16-des .checkbox-input-des:focus + .checkbox-tile-des {
  border-color: #ff4343;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}

.checkbox-wrapper-16-des .checkbox-input-des:focus + .checkbox-tile-des:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-wrapper-16-des .checkbox-tile-des {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7rem;
  min-height: 7rem;
  border-radius: 0.5rem;
  border: 2px solid #d9b5b5;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
  margin: 1rem;
}

.checkbox-wrapper-16-des .checkbox-tile-des:before {
  content: "";
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #d9b5b5;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.checkbox-wrapper-16-des .checkbox-tile-des:hover {
  border-color: #ff4343;
}

.checkbox-wrapper-16-des .checkbox-tile-des:hover:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-wrapper-16-des .checkbox-icon-des {
  transition: 0.375s ease;
  color: #494949;
}

.checkbox-wrapper-16-des .checkbox-icon-des svg {
  width: 3rem;
  height: 3rem;
}

.checkbox-wrapper-16-des .checkbox-label-des {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
}
.comprar {
  font-weight: 500;
  padding: 12px 22px;
  background-color: #1f7df1;
  color: #ffffff;
  border-radius: 10px;
  margin: 2rem auto;
  display: block;
  border: 2px solid #1f7df1;
  transition: background-color 0.3s, color 0.3s;
}
.comprar:hover {
  background-color: #1f7df1;
  color: white;
}
.justificacion{
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem;
  border: 2px solid var(--primary-lighter);
  border-radius: 0.3rem;
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  display: block;
  height: 120px;
  font-family: Poppins, sans-serif;

}
@media (max-width: 382px) {
  .checkbox-wrapper-16 .checkbox-tile{
    width: 6rem;
    min-height: 6rem;
    margin: .5rem;
  }
  .checkbox-wrapper-16-des .checkbox-tile-des{
    width: 6rem;
    min-height: 6rem;
    margin: .5rem;
  }
}


/*compra*/

.compra-comidas{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.container-numerosss {
  text-align: center;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  margin-top: 2rem;
}

.counter-numerosss {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #707070;
   display: flex;
   align-items: center;
   justify-content: center;
}

.button-numerosss {
  padding: 0px 9px;
  font-size: 1em;
  cursor: pointer;
}

.clicks-numerosss {
  font-size: 1.1em;
  margin-top: 10px;
}
.menos{
  background-color: #EBEBEB;
  font-weight: 500;
  font-size: 2rem;
  border-radius: 5px;
}
.mas{
  background-color: #1f7df1;
  font-weight: 500;
  font-size: 2rem;
  color: white;
  border-radius: 5px;
}
.count-numerosss{
  margin: 1rem ;
  width: 100px;
}


/******//* From Uiverse.io by 3bdel3ziz-T */ 
.container-input {
  --transition: 350ms;
  --folder-W: 120px;
  --folder-H: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
  border-radius: 15px;
  height: calc(var(--folder-H) * 1.7);
  position: relative;
  margin-top: 3rem;
}

.folder-input{
  position: absolute;
  top: -20px;
  left: calc(50% - 60px);
  animation: float 2.5s infinite ease-in-out;
  transition: transform var(--transition) ease;
}

.folder-input:hover {
  transform: scale(1.05);
}

.folder-input .front-side-input,
.folder-input .back-side-input {
  position: absolute;
  transition: transform var(--transition);
  transform-origin: bottom center;
}

.folder-input .back-side-input::before,
.folder-input .back-side-input::after {
  content: "";
  display: block;
  background-color: white;
  opacity: 0.5;
  z-index: 0;
  width: var(--folder-W);
  height: var(--folder-H);
  position: absolute;
  transform-origin: bottom center;
  border-radius: 15px;
  transition: transform 350ms;
  z-index: 0;
}

.container-input:hover .back-side-input::before {
  transform: rotateX(-5deg) skewX(5deg);
}
.container-input:hover .back-side-input::after {
  transform: rotateX(-15deg) skewX(12deg);
}

.folder-input .front-side-input {
  z-index: 1;
}

.container-input:hover .front-side-input {
  transform: rotateX(-40deg) skewX(15deg);
}

.folder-input .tip-input {
  background: linear-gradient(135deg, #ff9a56, #ff6f56);
  width: 80px;
  height: 20px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -10px;
  z-index: 2;
}

.folder-input .cover-input {
  background: linear-gradient(135deg, #ffe563, #ffc663);
  width: var(--folder-W);
  height: var(--folder-H);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.custom-file-upload-input {
  font-size: 1.1em;
  color: #2260ff;
  text-align: center;
  background: #cbe2ff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--transition) ease;
  display: inline-block;
  width: 100%;
  padding: 10px 35px;
  position: relative;
}

.custom-file-upload-input:hover {
  background: #0aa5ff;
  color: white;
}

.custom-file-upload-input input[type="file"] {
  display: none;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 382px) {
  .custom-file-upload-input{
    font-size: .9rem;
  }
}
/*modificaciones*/

.form-cont{ 
  display: flex;
  flex-direction: column;
  width: 44%;
  justify-content: left;
}


span.msg-selected,
span.choose-selected {
  color: #555;
  padding: 5px 0 10px;
  display: inherit;
}
.container-selected {
  width: 94%;
  margin: 50px auto 0;
  text-align: center;
}

.dropdown-selected {
  width: 100%;
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
  border: 2px solid var(--primary-lighter);
  transition: all .5s ease;
  position: relative;
  font-size: 14px;
  color: #474747;
  height: 100%;
  text-align: left;
}
.dropdown-selected .select-selected {
  cursor: pointer;
  display: block;
  padding: 10px;
}
.dropdown-selected .select-selected > i {
  font-size: 13px;
  color: #888;
  cursor: pointer;
  transition: all .3s ease-in-out;
  float: right;
  line-height: 20px;
}
.dropdown-selected:hover {
  box-shadow: 0 0 4px rgb(204, 204, 204);
}
.dropdown-selected:active {
  background-color: #f8f8f8;
}
.dropdown-selected.active:hover,
.dropdown-selected.active {
  box-shadow: 0 0 4px rgb(204, 204, 204);
  border-radius: 2px 2px 0 0;
  background-color: #f8f8f8;
}
.dropdown-selected.active .select-selected > i {
  transform: rotate(-90deg);
}
.dropdown-selected .dropdown-menu-selected {
  position: absolute;
  background-color: #fff;
  width: 100%;
  left: 0;
  margin-top: 1px;
  box-shadow: 0 1px 2px rgb(204, 204, 204);
  border-radius: 0 1px 2px 2px;
  overflow: hidden;
  display: none;
  max-height: 144px;
  overflow-y: auto;
  z-index: 9;
}
.dropdown-selected .dropdown-menu-selected li {
  padding: 10px;
  transition: all .2s ease-in-out;
  cursor: pointer;
}
.dropdown-selected .dropdown-menu-selected {
  padding: 0;
  list-style: none;
}
.dropdown-selected .dropdown-menu-selected li:hover {
  background-color: #f2f2f2;
}
.dropdown-selected .dropdown-menu-selected li:active {
  background-color: #e2e2e2;
}
@media (max-width: 742px) {
.form-cont{ 
  display: flex;
  flex-direction: column;
  width: 95%;
  justify-content: left;
}
}