/* Estilos generales */


  @media (min-width:800px){
    
    body {
      font-family: 'Roboto', sans-serif;
      background-color: #fffcfc;
      margin: auto;
      padding: 0;
      max-width: 900px;
    }

    .contenedor_bloques {

      display: flex;
      flex-direction: row;

    }

    .seleccion-dia {
      
      width: 800px; /* O el ancho que desees */
      
    }

    .bloque1 {

      width: 400px;

      margin-right: 50px;
    }

    .bloque2{
      width: 400px;
    }
  }


  @media (max-width:799px){
    
    body {
      font-family: 'Roboto', sans-serif;
      background-color: #fffcfc;
      margin: auto;
      padding: 0;
      max-width: 400px;
    }

    .contenedor_bloques {

      display: flex;
      flex-direction: column;

    }

    .seleccion-dia {
      
      width: 350px; /* O el ancho que desees */
      
    }
  }

  h1, h2, h3, p {
    font-family: 'Roboto', sans-serif;
}
  
  .container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }
  
  h1 {
    text-align: center;
  }
  
  /* Estilos del formulario  */ 
  .form {
    padding: 20px;
  }
  
  .form-step {
    display: none;
  }
  
  .form-step-active {
    display: block;
  }
  
  .input-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
  }
  
  input[type="text"],
  select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .btns-group {
    display: flex;
    justify-content: space-between;
  }
  
  .btn {
    padding: 10px 20px;
    background-color: #232323;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #f7d00f;
  }
  
  /* Progress bar */
  
  .form label {
  position: relative;
}

/* 
.form label .input {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.form label .input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.form label .input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
}

.form label .input:focus + span,.form label .input:valid + span {
  top: 30px;
  font-size: 0.7em;
  font-weight: 600;
}

.form label .input:valid + span {
  color: green;*/


/* Efecto para estilos del label (animacion) */

  .form label {
    position: relative;
  }
  
  .form label .input {
    width: 100%;
    padding: 10px 0px 20px 5px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
    margin: 0px 0px 15px 0px;
  }
  
  .form label .input + span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
    top: 11px;
    font-size: 0.9em;
  }
  
  .form label .input:focus + span,.form label .input:valid + span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .form label .input:valid + span {
    color: green;
  }

  /* Efecto para estilos del label (animacion) 
  .flex {
    display: flex;
    width: 100%;
    gap: 6px;
  }

  Efecto para estilos del label (animacion) */

  .flex {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-bottom: 10px;
}

.flex label {
    flex: 1;             
    box-sizing: border-box; /* Asegura que el padding y el borde no afecten al ancho total */
}

.flex label:first-child {
    margin-right: 3px; /* Añade un margen a la derecha del primer label para crear separación */
}

.flex input {
    width: 100%; /* Hace que el input ocupe el 100% del ancho del label */
}

.flex span {
    display: block; /* Coloca el texto (Firstname, Lastname) debajo del input */
    margin-top: 6px; /* Añade un pequeño espacio entre el input y el texto */
}

/* efecto de campo radio */

.radio-input {
  display: flex;
  flex-direction: row;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.radio-input input[type="radio"] {
  display: none;
}

.radio-input label {
  display: flex;
  align-items: center;
  padding: 20px 15px;
  border: 1px solid #ccc;
  background-color: #232323;
  border-radius: 5px;
  margin: 0px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.radio-input label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #f7d00f;
  transition: all 0.3s ease-in-out;
}

.radio-input input[type="radio"]:checked + label:before {
  background-color: green;
  top: 0;
}

.radio-input input[type="radio"]:checked + label {
  background-color: #f7d00f;
  color: #232323;
  border-color: #8b7609;
  animation: radio-translate 0.5s ease-in-out;
}

@keyframes radio-translate {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateX(0);
  }
}
/* fin efecto de campo radio */
/* efecto de campo radio tipo 2 */

.radio-inputs {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 350px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-inputs > * {
  margin: 6px;
}

.custom-radio-input:checked + .custom-radio-tile {
  border-color: #f7d00f;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #232323;
}

.custom-radio-input:checked + .custom-radio-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: #f7d00f;
  border-color: #f7d00f;
}

.custom-radio-input:checked + .custom-radio-tile .custom-radio-icon svg {
  fill: #232323;
}

.custom-radio-input:checked + .custom-radio-tile .custom-radio-label {
  color: #232323;
}

.custom-radio-input:focus + .custom-radio-tile {
  border-color: #f7d00f;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}

.custom-radio-input:focus + .custom-radio-tile:before {
  transform: scale(1);
  opacity: 1;
}

.custom-radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 80px;
  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;
}

.custom-radio-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  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;
}

.custom-radio-tile:hover {
  border-color: #f7d00f;
}

.custom-radio-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.custom-radio-icon svg {
  width: 100%;
  height: 2rem;
  fill: #494949;
}

.custom-radio-label {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
  font-size: 13px;
}

.custom-radio-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;
}
/* fin efecto de campo radio tipo 2 */
/* divisores */
.divider-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px; /* Puedes ajustar el margen según tus necesidades */
}

.divider-text {
  padding-right: 10px; /* Espaciado entre el texto y la línea */
}

.divider-line {
  flex-grow: 2;
  height: 3px;
  background-color: #d9d9d9; /* Color de la línea */
}
/* fin de divisores */

/* check box */
.checkbox {
  --light: rgba(207, 205, 205, 0.425);
  --primary-color: #8c00ff;
  --duration: 0.3s;
  --ease: ease-in-out;
}

/* hide checkbox */
.checkbox input[type="checkbox"] {
  display: none;
}

.checkbox label {
  align-items: center;
  cursor: pointer;
  display: flex;
}

.checkbox label span {
  margin-left: 8px;
}

.checkbox svg {
  height: 30px;
  width: 30px;
}

/* svg rectangle property */
.checkbox svg > rect {
  fill: var(--light);
  stroke: #8c00ff;
  /* responsive values */
  stroke-dasharray: 400%;
  stroke-dashoffset: 400%;
  transition: var(--duration) stroke-dashoffset var(--ease);
}

/* svg check property */
.checkbox svg path {
  stroke: var(--primary-color);
  /* responsive values */
  stroke-dasharray: 100%;
  stroke-dashoffset: 100%;
  transition: var(--duration) stroke-dashoffset var(--ease);
}

.checkbox input[type="checkbox"]:checked + label svg > rect,
  .checkbox input[type="checkbox"]:checked + label svg path {
  stroke-dashoffset: 0;
}
/* fin decheck box */

.custom-radio-inputs.three-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Adjust spacing if needed */
  align-items: center;
}

.custom-radio-inputs.three-columns > label {
  flex-basis: 33%; /* Ensure 3 equal columns */
}

custom-radio-tile .custom-radio-icon svg {
  display: block; /* Make SVGs block-level for centering */
  margin: 0 auto; /* Center horizontally */
}
/* Clases para el multiselec */
.campo-multiselec {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
}
  /* Clases para el multiselec */


  .checkbox-subproducto {
    appearance: none;
    overflow: hidden;
    min-width: 15px;
    aspect-ratio: 1/1;
    border-radius: 50% 50% 50% 50%;
    border: 2px solid #f7d00f;
    position: relative;
    transition: all 0.2s ease-in-out;
    max-width: 20px;
  }
  
  .checkbox-subproducto::before {
    position: absolute;
    inset: 0;
    content: "";
    font-size: 35px;
    transition: all 0.2s ease-in-out;
  }
  
  .checkbox-subproducto:checked {
    border: 2px solid rgb(255, 212, 59);
    background: linear-gradient(135deg, rgb(255, 212, 59) 0%, rgb(255, 102, 0) 100%);
    box-shadow: -5px -5px 30px rgba(255, 212, 59, 1), 5px 5px 30px rgba(255, 102, 0, 1);
  }
  
  .checkbox-subproducto:checked::before {
    background: linear-gradient(135deg, rgb(255, 212, 59) 0%, rgb(255, 102, 0) 100%);
  }
  .label-texto-parabrisas {
    color:#252525;
    padding: 0px 0px 0px 10px;
    vertical-align: middle;
    margin: auto 0px;
  }
  .item-subservicio {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    padding: 5px;
    margin: 10px 5px;
    border-radius: 20px 7px 7px 20px;
    box-shadow: #000000a4 0px 2px 10px -6px;
  }
  
  .checkbox-subproducto {
    width: 40px;
  }
  .checkbox-container {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px; /* Ajusta el margen derecho según sea necesario */
  }

  .custum-file-upload {
    height: 200px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    gap: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cacaca;
    background-color: rgba(255, 255, 255, 1);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0px 48px 35px -48px rgba(0,0,0,0.1);
  }
  
  .custum-file-upload .icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .custum-file-upload .icon svg {
    height: 80px;
    fill: rgba(75, 85, 99, 1);
  }
  
  .custum-file-upload .text {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .custum-file-upload .text span {
    font-weight: 400;
    color: rgba(75, 85, 99, 1);
  }
  
  .custum-file-upload input {
    display: none;
  }

  input[type = "checkbox"] .contenedor-beneficio {
    visibility: hidden;
    display: none;
    appearance: none;
    -webkit-appearance: none;
  }
  
  label.contenedor-beneficio {
    display: block;
    width: 60px;
    height: 30px;
    background: #d3d3d3;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    box-shadow: 9px 9px 29px #969696,
    -9px -9px 29px #ffffff;
  }
  
  label.shadow {
    width: 50px;
    height: 20px;
    position: absolute;
    border-radius: 50px;
    left: 5px;
    top: 5px;
    box-shadow: inset 3px 3px 10px #969696,
    inset -3px -3px 5px #ffffffbd;
    cursor: pointer;
  }
  
  .contenedor-beneficio span {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #232323;
    margin: 5px;
    border-radius: 50px;
    font-size: 20px;
    transition: all 0.3s ease-in;
    position: relative;
    left: 0;
    z-index: 1;
  }
  
  .contenedor-beneficio span::after {
    position: absolute;
    top: 6px;
    left: 4px;
    transition-delay: 5s;
  }
  
  input[type = "checkbox"]:checked ~ span {
    left: 29px;
    transition: 0.3s ease-in;
    background: #f7d00f;
    transform: rotate(220deg);
  }
  .texto-beneficio {
      padding-left: 20px;
  }
  .item-beneficio {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
  .ocultar {
  display: none;
  }
  .linea-divisoria {
    height: 1px;
    background-color: rgb(233 233 233);
    border: 0,5px dashed rgb(233, 233, 233);
    border-width: 0px;
  }
  .contenido-consulta form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .contenido-consulta label {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.375em;
  }
  
  .contenido-consulta  label input {
    position: absolute;
    left: -9999px;
  }
  
  .contenido-consulta label input:checked + span {
    background-color: #f7d00f;
    color: white;
  }
  
  .contenido-consulta label input:checked + span:before {
    box-shadow: inset 0 0 0 0.4375em #232323;
  }
  
  .contenido-consulta label span {
    display: flex;
    align-items: center;
    padding: 0.375em 0.75em 0.375em 0.375em;
    border-radius: 99em;
    transition: 0.25s ease;
    color: #232323;
  }
  
  .contenido-consulta label span:hover {
    background-color: #f7d00f;
  }
  
  .contenido-consulta label span:before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    margin-right: 0.375em;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 0.125em 
  }
    .contenido-consulta form {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
    }
    
    .contenido-consulta label {
      display: flex;
      cursor: pointer;
      font-weight: 500;
      position: relative;
      overflow: hidden;
      margin-bottom: 0.375em;
    }
    
    .contenido-consulta  label input {
      position: absolute;
      left: -9999px;
    }
    
    .contenido-consulta label input:checked + span {
      background-color: #f7d00f;
      color: white;
    }
    
    .contenido-consulta label input:checked + span:before {
      box-shadow: inset 0 0 0 0.4375em #927b08;
    }
    
    .contenido-consulta label span {
      display: flex;
      align-items: center;
      padding: 0.375em 0.75em 0.375em 0.375em;
      border-radius: 99em;
      transition: 0.25s ease;
      color: #414181;
    }
    
    .contenido-consulta label span:hover {
      background-color: #f7d00f;
    }
    
    .contenido-consulta label span:before {
      display: flex;
      flex-shrink: 0;
      content: "";
      background-color: #fff;
      width: 1.5em;
      height: 1.5em;
      border-radius: 50%;
      margin-right: 0.375em;
      transition: 0.25s ease;
      box-shadow: inset 0 0 0 0.125em #927b08;
    }

    .precio-contenedor {
      width: 190px;
      height: 254px;
      padding: 20px;
      border-radius: 15px;
      background: #e0e0e0;
      box-shadow: 15px 15px 30px #bebebe,
      -15px -15px 30px #ffffff;
    }
    .precio-modulo {
      width: 390px;
      height: 554px;
      border-radius: 30px;
      background: #e0e0e0;
      box-shadow: 15px 15px 30px #bebebe,
      -15px -15px 30px #ffffff;
    }
    .input-select {
      width: 100%;
      padding: 15px 0px;
    }
  .input-select select {
    background-color: #fff;
    padding: 15px;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
  }
  .input-select label {
    background-color: #FFF;
    position: absolute;
    margin: -9px 0px 0px 11px;
    padding: 0px 5px;
    color: #7e7e7e;
  }

  /* Estilo para las opciones del select */
.input-select option {
  background-color: rgba(255, 255, 255, 0.301);
  color: #232323;
}

/* Estilo para la flecha del select */
.input-select::-ms-expand {
  display: none;
}

.input-select::-webkit-scrollbar {
  width: 9px;
}

.input-select::-webkit-scrollbar-thumb {
  background-color: #232323;
  border-radius: 6px;
}

.input-select::-webkit-scrollbar-thumb:hover {
  background-color: #161616;
}

.input-select::-webkit-scrollbar-thumb:active {
  background-color: #2b2a25;
}
/* opciones de precios */
.lista-de-precios {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; /* Permite salto de línea */
  width: calc(100% - 0px);
  gap: 10px;
}

.contenedor-plan {
  position: relative;
  width: 110px;
  height: 140px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s;
  flex: 0 0 calc(30%);
}

.contenedor-plan:hover {
  transform: scale(1.02);
}

.plan {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  appearance: none;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  z-index: 10;
  box-shadow: 1px 1px 10px #aaaaaa,
              -1px -1px 10px #ffffff;
}

.plan + .check::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 5px;
  height: 5px;
  border: 2px solid #d0d0d0;
  border-radius: 50%;
  background-color: #E8E8E8;
}

.plan:checked + .check::after {
  content: '';
  position: absolute;
  top: 7px;
  right: 7px;
  width: 5px;
  height: 5px;
  background-color: rgba(216, 139, 22, 0.7);
  border-radius: 50%;
}

.plan[value="basico"]:checked + .check::after {
  background-color: rgba(37, 37, 37, 0.7);
}

.plan[value="pro"]:checked + .check::after {
  background-color: rgba(255,165,0,0.7);
}

.plan[value="express"]:checked + .check::after {
  background-color: rgba(255,165,0,0.7);
}

.plan[value="basico"]:checked {
  border: 3px solid rgba(77, 77, 77, 0.7);
}

.plan:checked {
  border: 3px solid rgba(255,165,0,0.7);
}

.plan[value="express"]:checked {
  border: 3px solid rgba(255,165,0,0.7);
}

.campo-p {
  color: #323232;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}

.campo-p .titulo {
  margin: 15px 0 0 15px;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 1.5px;
  color: rgb(66, 129, 2);
}

.campo-p .price {
  margin: 20px 0 0 15px;
  font-size: 19px;
  font-weight: 900;
}

.campo-p .moneda {
  color: gray;
  font-weight: 700;
  font-size: 12px;
  margin:0px -4px 0px -2px 
}
.descripcion {
  color: #232323;
  font-weight: 600;
  font-size: 13px;
  line-height: 1em;
  padding:5px;
}

/* Estilo para el calendario emergente en Chrome */
input[type="date"]::-webkit-calendar-picker-indicator {
  background-color: #ffffff; /* Color de fondo del botón del calendario */
  color: #232323; /* Color del texto del botón del calendario */
  padding: 6px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

input[type="date" i] {
  width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #d3d3d3;
    background-color: #232323;
    color: #fff;
    margin-bottom: 40px;
}

/* Estilo para el texto del calendario emergente en Chrome */
input[type="date"]::-webkit-calendar-picker-indicator::last-line {
  display: none; /* Oculta el texto del botón del calendario */
}
.imagen-pasos{
  text-align: center;
  max-width: 600px;
  width: 100%;
}
.terminos-y-condiciones{
  margin:10px 10px 10px 10px;
  padding: 10px;
  background-color: #c7c7c6;
  display: flex;
  border-radius: 9px;
}
.item-beneficio {
  display: flex;
  margin: 10px 0px 25px 0px;
  padding: 10px;
  border-radius: 20px;
  background: #e8e8e8;
  box-shadow: 5px 5px 6px #dadada, -5px -5px 6px #f6f6f6;
  transition: 0.4s;
}
.item-beneficio:hover {
  translate: 0 -10px;
}

.sello-beneficio {
  flex: 0 0 30%;
}

.descripcion-beneficio {
  flex: 1; 
  padding-left: 10px; 
}
.sello-beneficio img {
  width: 100%;
}
.lista-de-beneficios {
  width: 100%;
  padding: 10px 0px;
}
.descripcion-beneficio p {
  font-size: 13px;
  margin: 4px;
  color: #232323;
}
.descripcion-beneficio h5 {
  font-size: 18px;
  margin: 3px 0px 1px 0px;
}
.card {
  background-color: rgba(243, 244, 246, 1);
  padding: 1rem;
  max-width: 320px;
  border-radius: 10px;
  box-shadow: 0 20px 30px -20px rgba(5, 5, 5, 0.24);
}

.superior {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  gap: 1rem;
}

.superior .imagen {
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  object-fit: cover;
  background-color: royalblue;
}

.stars {
  display: flex;
  justify-content: center;
  grid-gap: 0.125rem;
  gap: 0.125rem;
  color: #f7d00f;
}

.stars svg {
  height: 1rem;
  width: 1rem;
}

.nombre-especialista {
  margin: 0.25rem 0rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
}

.descripcion-perfil {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 2px 0px;
  color: rgba(107, 114, 128, 1);
}
.radio-group {
  padding: 20px 0px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px; 
}

.campo-hora {
  display: flex;
  align-items: center;
  padding: 0.5em;
  margin-bottom: 0em;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: background-color 0.2s, border-color 0.2s;
}

.campo-hora:hover {
  background-color: #e6e6e6;
}

.hora-disponible {
  position: absolute;
  opacity: 0;
}

.hora-disponible:disabled + .campo-hora {
  background-color: #504e4a;
  
}

.hora-disponible:checked + .campo-hora {
  background-color: #54ce5c;
  border-color: #ffe211;
}

.hora-disponible:focus + .campo-hora {
  outline: 2px solid #232323;
}

.radio-circulo {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid #888;
  border-radius: 50%;
  margin-right: 0.5em;
  transition: border-color 0.2s;
  position: relative;
}

.campo-hora:hover .radio-circulo {
  border-color: #555;
}

.hora-disponible:checked + .campo-hora .radio-circulo {
  border-color: #232323;
}

.hora-disponible:checked + .campo-hora .radio-circulo::after {
  content: '';
  display: block;
  width: 0.5em;
  height: 0.5em;
  background-color: #232323;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.especialista input {
  position: absolute;
  margin: -75px 0px 0px -10px;
}
.especialista label {
  display: none;
}
.especialista input:active {
    position: absolute;
    margin: -100px 0px 0px -10px;
}
.especialista {
  border: 1px solid transparent;
  margin-bottom: 5px; 
}

.especialista-item:checked + .especialista {
  border-color: yellow; 
  border-left: 4px solid  yellow ;
}
.especialista-item:checked + .campo-hora + .imagen + div {
  padding-left: 10px;
}

/* campo telefono */

.ui-wrapper {
  --width: 250px;
  --height: 50px;
  --background: #fff;
  --text-color: rgb(73, 73, 73);
  --border-color: rgb(185, 184, 184);
  --border-focus-color: rgb(0, 110, 255);
  --shadow-color: rgba(34, 60, 80, 0.2);
  --shadow-focus-color: rgba(0, 110, 255, 0.2);
  --dropdown-button-color: #e6e6e6;
  --dropdown-button-hover-color: #dad9d9;
  z-index: 5;
}

.ui-wrapper *,
.ui-wrapper *::before,
.ui-wrapper *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: sans-serif;
  color: var(--text-color);
}

.ui-wrapper {
  width: var(--width);
  height: var(--height);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 10px;
  position: relative;
  border: 1px solid var(--border-color);
  background-color: var(--background);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 10px;
  -webkit-box-shadow: 0px 2px 5px 0px var(--shadow-color);
  box-shadow: 0px 2px 5px 0px var(--shadow-color);
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ui-wrapper>input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  left: 9999px;
}

.dropdown-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
  border-radius: 9px 0 0 9px;
  background-color: var(--dropdown-button-color);
}

.dropdown-container::before {
  content: "🇦🇹";
  font-size: 20px;
  background: none !important;
}

.dropdown-container::after {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjNDk0OTQ5IiB3aWR0aD0iNzAwcHQiIGhlaWdodD0iNzAwcHQiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDcwMCA3MDAiCiAgICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxwYXRoCiAgICAgICAgZD0ibTM4MC4zOSA0ODQuNzkgMzA3LjA0LTMwNS45OWMxNi43NjYtMTcuODEyIDE2Ljc2Ni00NS4wNTkgMC02MS44MjgtMTYuNzY2LTE2Ljc2Ni00NS4wNTktMTYuNzY2LTYxLjgyOCAwbC0yNzUuNiAyNzUuNi0yNzUuNi0yNzUuNmMtMTcuODEyLTE2Ljc2Ni00NS4wNTktMTYuNzY2LTYxLjgyOCAwLTE2Ljc2NiAxNi43NjYtMTYuNzY2IDQ0LjAxMiAwIDYxLjgyOGwzMDUuOTkgMzA1Ljk5YzE3LjgxMiAxNi43NjYgNDUuMDU5IDE2Ljc2NiA2MS44MjggMHoiCiAgICAgICAgZmlsbC1ydWxlPSJjdXJyZW50Q29sb3IiIC8+Cjwvc3ZnPg==");
  width: 12px;
  height: 12px;
  background-position: center;
  background-size: cover;
  margin-left: 5px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.select-wrapper {
  width: var(--width);
  position: absolute;
  top: calc(var(--height) + 20px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.select-wrapper ul {
  width: 100%;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  margin: 0;
  list-style: none;
  height: 300px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  white-space: nowrap;
}

.select-wrapper ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px;
  border-radius: 5px;
}

.select-wrapper ul li label {
  width: 100%;
}

.select-wrapper ul li,
.select-wrapper ul li * {
  cursor: pointer;
}

.select-wrapper ul li:hover {
  background: lightgray;
}

.select-wrapper ul li span {
  display: inline-block;
  margin-right: 15px;
}

.input-wrapper {
  width: 100%;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 2px;
}

.input-wrapper legend {
  font-size: 11px;
}

.input-wrapper .textfield {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.input-wrapper .textfield::before {
  content: "+31";
  margin-right: 5px;
  white-space: nowrap;
}

.input-wrapper .textfield input {
  width: 100%;
  font-size: 16px;
  outline: none;
  border: none;
  background: none;
}

.invalid-msg {
  font-size: 12px;
  position: absolute;
  color: red;
  top: 115%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

/* actions */

#phonenumber:invalid+.invalid-msg {
  top: 110%;
  opacity: 1;
  visibility: visible;
}

.ui-wrapper:focus-within {
  border-color: var(--border-focus-color);
  -webkit-box-shadow: 0px 2px 5px 0px var(--shadow-focus-color);
  box-shadow: 0px 2px 5px 0px var(--shadow-focus-color);
}

.dropdown-container:hover {
  background-color: var(--dropdown-button-hover-color);
}

.dropdown-checkbox:checked~.select-wrapper {
  top: calc(var(--height) + 5px);
  opacity: 1;
  visibility: visible;
}

.dropdown-checkbox:checked+.dropdown-container::after {
  rotate: 180deg;
  translate: 0 -2px;
}

.ui-wrapper input#Austria:checked~.dropdown-container::before,
.ui-wrapper input#Austria:checked~.select-wrapper li.Austria {
  content: "🇦🇹";
  background-color: lightgray;
}

.ui-wrapper input#Belgium:checked~.dropdown-container::before,
.ui-wrapper input#Belgium:checked~.select-wrapper li.Belgium {
  content: "🇧🇪";
  background-color: lightgray;
}

.ui-wrapper input#Bulgaria:checked~.dropdown-container::before,
.ui-wrapper input#Bulgaria:checked~.select-wrapper li.Bulgaria {
  content: "🇧🇬";
  background-color: lightgray;
}

.ui-wrapper input#Croatia:checked~.dropdown-container::before,
.ui-wrapper input#Croatia:checked~.select-wrapper li.Croatia {
  content: "🇭🇷";
  background-color: lightgray;
}

.ui-wrapper input#Cyprus:checked~.dropdown-container::before,
.ui-wrapper input#Cyprus:checked~.select-wrapper li.Cyprus {
  content: "🇨🇾";
  background-color: lightgray;
}

.ui-wrapper input#Czech:checked~.dropdown-container::before,
.ui-wrapper input#Czech:checked~.select-wrapper li.Czech {
  content: "🇨🇿";
  background-color: lightgray;
}

.ui-wrapper input#Denmark:checked~.dropdown-container::before,
.ui-wrapper input#Denmark:checked~.select-wrapper li.Denmark {
  content: "🇩🇰";
  background-color: lightgray;
}

.ui-wrapper input#Estonia:checked~.dropdown-container::before,
.ui-wrapper input#Estonia:checked~.select-wrapper li.Estonia {
  content: "🇪🇪";
  background-color: lightgray;
}

.ui-wrapper input#Finland:checked~.dropdown-container::before,
.ui-wrapper input#Finland:checked~.select-wrapper li.Finland {
  content: "🇫🇮";
  background-color: lightgray;
}

.ui-wrapper input#France:checked~.dropdown-container::before,
.ui-wrapper input#France:checked~.select-wrapper li.France {
  content: "🇫🇷";
  background-color: lightgray;
}

.ui-wrapper input#Germany:checked~.dropdown-container::before,
.ui-wrapper input#Germany:checked~.select-wrapper li.Germany {
  content: "🇩🇪";
  background-color: lightgray;
}

.ui-wrapper input#Greece:checked~.dropdown-container::before,
.ui-wrapper input#Greece:checked~.select-wrapper li.Greece {
  content: "🇬🇷";
  background-color: lightgray;
}

.ui-wrapper input#Hungary:checked~.dropdown-container::before,
.ui-wrapper input#Hungary:checked~.select-wrapper li.Hungary {
  content: "🇭🇺";
  background-color: lightgray;
}

.ui-wrapper input#Iceland:checked~.dropdown-container::before,
.ui-wrapper input#Iceland:checked~.select-wrapper li.Iceland {
  content: "🇮🇸";
  background-color: lightgray;
}

.ui-wrapper input#Ireland:checked~.dropdown-container::before,
.ui-wrapper input#Ireland:checked~.select-wrapper li.Ireland {
  content: "🇮🇪";
  background-color: lightgray;
}

.ui-wrapper input#Italy:checked~.dropdown-container::before,
.ui-wrapper input#Italy:checked~.select-wrapper li.Italy {
  content: "🇮🇹";
  background-color: lightgray;
}

.ui-wrapper input#Latvia:checked~.dropdown-container::before,
.ui-wrapper input#Latvia:checked~.select-wrapper li.Latvia {
  content: "🇱🇻";
  background-color: lightgray;
}

.ui-wrapper input#Liechtenstein:checked~.dropdown-container::before,
.ui-wrapper input#Liechtenstein:checked~.select-wrapper li.Liechtenstein {
  content: "🇱🇮";
  background-color: lightgray;
}

.ui-wrapper input#Lithuania:checked~.dropdown-container::before,
.ui-wrapper input#Lithuania:checked~.select-wrapper li.Lithuania {
  content: "🇱🇹";
  background-color: lightgray;
}

.ui-wrapper input#Luxembourg:checked~.dropdown-container::before,
.ui-wrapper input#Luxembourg:checked~.select-wrapper li.Luxembourg {
  content: "🇱🇺";
  background-color: lightgray;
}

.ui-wrapper input#Malta:checked~.dropdown-container::before,
.ui-wrapper input#Malta:checked~.select-wrapper li.Malta {
  content: "🇲🇹";
  background-color: lightgray;
}

.ui-wrapper input#Netherlands:checked~.dropdown-container::before,
.ui-wrapper input#Netherlands:checked~.select-wrapper li.Netherlands {
  content: "🇳🇱";
  background-color: lightgray;
}

.ui-wrapper input#Norway:checked~.dropdown-container::before,
.ui-wrapper input#Norway:checked~.select-wrapper li.Norway {
  content: "🇳🇴";
  background-color: lightgray;
}

.ui-wrapper input#Poland:checked~.dropdown-container::before,
.ui-wrapper input#Poland:checked~.select-wrapper li.Poland {
  content: "🇵🇱";
  background-color: lightgray;
}

.ui-wrapper input#Portugal:checked~.dropdown-container::before,
.ui-wrapper input#Portugal:checked~.select-wrapper li.Portugal {
  content: "🇵🇹";
  background-color: lightgray;
}

.ui-wrapper input#Romania:checked~.dropdown-container::before,
.ui-wrapper input#Romania:checked~.select-wrapper li.Romania {
  content: "🇷🇴";
  background-color: lightgray;
}

.ui-wrapper input#Slovakia:checked~.dropdown-container::before,
.ui-wrapper input#Slovakia:checked~.select-wrapper li.Slovakia {
  content: "🇸🇰";
  background-color: lightgray;
}

.ui-wrapper input#Slovenia:checked~.dropdown-container::before,
.ui-wrapper input#Slovenia:checked~.select-wrapper li.Slovenia {
  content: "🇸🇮";
  background-color: lightgray;
}

.ui-wrapper input#Spain:checked~.dropdown-container::before,
.ui-wrapper input#Spain:checked~.select-wrapper li.Spain {
  content: "🇪🇸";
  background-color: lightgray;
}

.ui-wrapper input#Sweden:checked~.dropdown-container::before,
.ui-wrapper input#Sweden:checked~.select-wrapper li.Sweden {
  content: "🇸🇪";
  background-color: lightgray;
}

.ui-wrapper input#Austria:checked~.input-wrapper .textfield::before {
  content: "+43";
}

.ui-wrapper input#Belgium:checked~.input-wrapper .textfield::before {
  content: "+32";
}

.ui-wrapper input#Bulgaria:checked~.input-wrapper .textfield::before {
  content: "+359";
}

.ui-wrapper input#Croatia:checked~.input-wrapper .textfield::before {
  content: "+385";
}

.ui-wrapper input#Cyprus:checked~.input-wrapper .textfield::before {
  content: "+357";
}

.ui-wrapper input#Czech:checked~.input-wrapper .textfield::before {
  content: "+420";
}

.ui-wrapper input#Denmark:checked~.input-wrapper .textfield::before {
  content: "+45";
}

.ui-wrapper input#Estonia:checked~.input-wrapper .textfield::before {
  content: "+372";
}

.ui-wrapper input#Finland:checked~.input-wrapper .textfield::before {
  content: "+358";
}

.ui-wrapper input#France:checked~.input-wrapper .textfield::before {
  content: "+33";
}

.ui-wrapper input#Germany:checked~.input-wrapper .textfield::before {
  content: "+49";
}

.ui-wrapper input#Greece:checked~.input-wrapper .textfield::before {
  content: "+30";
}

.ui-wrapper input#Hungary:checked~.input-wrapper .textfield::before {
  content: "+36";
}

.ui-wrapper input#Iceland:checked~.input-wrapper .textfield::before {
  content: "+354";
}

.ui-wrapper input#Ireland:checked~.input-wrapper .textfield::before {
  content: "+353";
}

.ui-wrapper input#Italy:checked~.input-wrapper .textfield::before {
  content: "+39";
}

.ui-wrapper input#Latvia:checked~.input-wrapper .textfield::before {
  content: "+371";
}

.ui-wrapper input#Liechtenstein:checked~.input-wrapper .textfield::before {
  content: "+423";
}

.ui-wrapper input#Lithuania:checked~.input-wrapper .textfield::before {
  content: "+370";
}

.ui-wrapper input#Luxembourg:checked~.input-wrapper .textfield::before {
  content: "+352";
}

.ui-wrapper input#Malta:checked~.input-wrapper .textfield::before {
  content: "+356";
}

.ui-wrapper input#Netherlands:checked~.input-wrapper .textfield::before {
  content: "+31";
}

.ui-wrapper input#Norway:checked~.input-wrapper .textfield::before {
  content: "+47";
}

.ui-wrapper input#Poland:checked~.input-wrapper .textfield::before {
  content: "+48";
}

.ui-wrapper input#Portugal:checked~.input-wrapper .textfield::before {
  content: "+351";
}

.ui-wrapper input#Romania:checked~.input-wrapper .textfield::before {
  content: "+40";
}

.ui-wrapper input#Slovakia:checked~.input-wrapper .textfield::before {
  content: "+421";
}

.ui-wrapper input#Slovenia:checked~.input-wrapper .textfield::before {
  content: "+386";
}

.ui-wrapper input#Spain:checked~.input-wrapper .textfield::before {
  content: "+34";
}

.ui-wrapper input#Sweden:checked~.input-wrapper .textfield::before {
  content: "+46";
}
.dos-columnas {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 12px;
}
/*popup*/
.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

details {
  position: relative;
  right: 16px;
  margin-top: 35px;
  bottom: 16px;
  color: #6b7280;
  display: flex;
  flex-direction: column;
}

details div {
  background-color: #1e1e27;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  border-radius: 8px;
  position: absolute;
  height: 350px;
  width: 400px;
  bottom: calc(100% + 1rem);
  right: -50%;
  overflow: auto;
  transform-origin: 100% 100%;
  color: #95a3b9;
}

details div::-webkit-scrollbar {
  width: 15px;
  background-color: #1e1e27;
}

details div::-webkit-scrollbar-thumb {
  width: 5px;
  border-radius: 99em;
  background-color: #95a3b9;
  border: 5px solid #1e1e27;
}

details div > * + * {
  margin-top: 0.75em;
}

details div p > code {
  font-size: 1rem;
  font-family: monospace;
}

details div pre {
  white-space: pre-line;
  border: 1px solid #95a3b9;
  border-radius: 6px;
  font-family: monospace;
  padding: 0.75em;
  font-size: 0.875rem;
  color: #fff;
}

details[open] div {
  -webkit-animation: scale 0.25s ease;
  animation: scale 0.25s ease;
}

summary {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 0.75em 3em 0.75em 1.25em;
  border-radius: 99em;
  color: #fff;
  background-color: #185adb;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  text-align: center;
  cursor: pointer;
  transition: 0.15s ease;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary:hover, summary:focus {
  background-color: #1348af;
}

summary svg {
  position: absolute;
  right: 1.25em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
}

@-webkit-keyframes scale {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes scale {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}
.imagen-popup{
  width: 100%;
}
#transparente{
  display: none;
  width: 100%;
  max-width: 600px;
}
#oscuro{
  display: none;
  width: 100%;
  max-width: 600px;
}
/*selecion de dias*/
.seleccion-dia {
  display: flex;
  overflow-x: auto; /* Habilitar el scroll horizontal */
  
  padding: 10px; /* Espacio alrededor de los radios */
  box-sizing: border-box;
  overflow-y: hidden;
}

.item-dia {
  min-width: 75px; /* Ancho fijo para cada opción */
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  margin-right: 10px; /* Espacio entre opciones */
}

.item-dia-contenido{
  padding: 15px auto !important;
}

input.imput-dia[type="radio"] {
  display: none; /* Ocultar el radio nativo */
}

input.imput-dia[type="radio"] + label {
  background: #fafafa;
  box-shadow: 20px 20px 60px #bebebe,
              -20px -20px 60px #ffffff;
  border-radius: 5px;
  padding: 9px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #ffffff;
  transition-duration: 180ms;
  transition-timing-function: ease-in ;
  margin-top: 10px;
  margin-bottom: 0px;
}

input.imput-dia[type="radio"]:checked + label {
  background-color: #dab615; /* Cambiar color de fondo cuando está seleccionado */
  color: #141414; /* Cambiar color de texto cuando está seleccionado */
  border: 2px solid #111111;
  margin-top: 0px;
  margin-bottom: 10px;
}
input.imput-dia[type="radio"]:hover + label {
  border: 2px solid #111111;
  margin-top: 0px;
  margin-bottom: 10px;
  transition-duration: 400ms;
}

input.imput-dia[type="radio"]:disabled + label {
  background-color: #6e6e58;
 
}
.mes {
  font-size: smaller;
}
.dia-n {
  font-size:xx-large;
  font-weight: 700;
}
.dia-l {
  font-size: smaller;
}
.horas-disponibles {
  padding: 5px 10px;
  background-color: #f7d00f;
  border-radius: 9px;
margin:15px 0px;
}
.icono-reves {
  transform: scaleX(-1);
}
/* Establece la posición y el z-index para superponer las imágenes */
.carro-fondo,
.vidrio1,
.vidrio2,
.vidrio3,
.vidrio4,
.vidrio42,
.vidrio5,
.vidrio6,
.vidrio7,
.vidrio8,
.vidrio82 {
    position: absolute;
    top: 0;
    left: 0;
}

/* Ajusta el z-index para controlar el orden de superposición */
.carro-fondo {
    z-index: 1; /* Fondo */
}


.vidrio1 {
    z-index: 2; /* Capas superiores */
    display: none;
}
.vidrio2 {
  z-index: 2; /* Capas superiores */
  display: none;
}
.vidrio3 {
  z-index: 2; /* Capas superiores */
  display: none;
}
.vidrio4 {
  z-index: 2; /* Capas superiores */
  display: none;
}
.vidrio42 {
  z-index: 2; /* Capas superiores */
  display: none;
}
.vidrio5 {
  z-index: 2; /* Capas superiores */
  display: none;
}
.vidrio6 {
z-index: 2; /* Capas superiores */
display: none;
}
.vidrio7 {
z-index: 2; /* Capas superiores */
display: none;
}
.vidrio8 {
z-index: 2; /* Capas superiores */
display: none;
}
.vidrio82 {
  z-index: 2; /* Capas superiores */
  display: none;
  }
.carro-container {
  position: relative; /* Posicionamiento relativo */
  width: 400px; /* Ajusta el ancho según tus necesidades */
  height: 200px; /* Ajusta la altura según tus necesidades */

}
.vidrio1.show-vidrio1,
  .vidrio2.show-vidrio2,
  .vidrio3.show-vidrio3,
  .vidrio4.show-vidrio4 {
    display: block;
  }


  .ultima-columna {
    flex: 1 1 auto !important;
    margin-right: 15px;
  }

  .columnasplan {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }
  .mediacolumna {
    float: left;
    width: 100%;
    margin: 0; /* Elimina el margen por defecto */
  }

  .link_cotizador {

    
      outline: none;
      text-decoration: none;
      display: inline-block;
      width: 100px;
      margin: 2px;
      text-align: center;
      line-height: 3;
      color: black;
      border-radius: 5px;
    
    
  }
    
    .link_cotizador:link,
    .link_cotizador:visited,
    .link_cotizador:focus {
      background: #f7d00f;
    }
    
    .link_cotizador:hover {
      background:  #65e914;
    }
    
    .link_cotizador:active {
      background: #20ec0a;
      
    }

  





  .telefono-container {
    display: flex;
    align-items: center;
  }
  
  #pais {
    margin-right: 10px;
  }
  
  #telefono {
    width: 200px;
  }
  #pais option:selected {
    display: none;
  }
  .pais-container {
    display: flex;
    width: 300px;
    align-items: center;
  }
  
  .indicativo {
    width: 30%;
    text-align: right;
  }
  
  .pais {
    width: 70%;
  }


  .head_logos {

    display: flex;
    justify-content: space-between;
  }


  .logo1 {
    flex: 1 1 auto;
  }
  
  .logo2 {
    flex: 1 1 auto;
    
    justify-content: end;
  }
  

  .error {
    color: red;
    font-size: 0.9em;
    margin-top: -10px;
    margin-bottom: 10px;
    display: none;
}