/* #region STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #000000;
  background-color: #ffffff;
}

body.modal-open {
  overflow: hidden;
}

.contenedor-principal {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 16px 0;
}

.formulario {
  width: 100%;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 5px;
}

.form-columns {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.form-columns > .campo,
.form-columns > .fila-prefijo-telefono,
.form-columns > .campo-titulacion-multiple,
.form-columns > .campo-toggle,
.form-columns > .boton-enviar,
.form-columns > .orden-required-cbox {
  width: 100%;
}

.form-columns.form-columns-full {
  padding-top: 8px;
}

.form-column {
  width: 100%;
  max-width: 370px;
}

.form-columns.form-columns-full .form-column {
  max-width: 100%;
}

.form-column + .form-column {
  margin-top: 8px;
}

.campo {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 0;
}

.campo.flotante .campo-control {
  position: relative;
  height: 48px;
  min-height: 48px;
}

.campo.flotante input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 48px;
  border-radius: 4px;
  border: 1px solid #b3b3b3;
  background-color: #ffffff;
  padding: 18px 40px 8px 12px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #000000;
  outline: none;
}

.campo.flotante input::placeholder {
  color: transparent;
}

.campo.flotante label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #000000;
  pointer-events: none;
  transition: all 0.18s ease;
}

.campo.flotante input:focus + label,
.campo.flotante input:not(:placeholder-shown) + label {
  top: 4px;
  transform: translateY(0);
  font-size: 13px;
  color: #737373;
}

.campo.flotante:focus-within input {
  border-color: #787878;
  border-width: 2px;
}

.campo.flotante input:not(:placeholder-shown) {
  font-weight: 700;
}

.icono-validacion {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.campo.flotante.valid input {
  border-color: #40c85d;
  border-width: 2px;
}

.campo.flotante.valid .icono-validacion {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22 4L8 20L2 14" stroke="%2334C759" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.campo.flotante.invalid input {
  border-color: #ff0000;
  border-width: 2px;
  color: #ff0000;
}

.campo.flotante.invalid .icono-validacion {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 4L20 20M4 20L20 4" stroke="%23E1251B" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.mensaje-error {
  display: block;
  min-height: 16px;
  margin-top: 1px;
  font-size: 13px;
  color: #ff0000;
  visibility: hidden;
}

.campo.invalid .mensaje-error {
  visibility: visible;
}

.campo-select {
  display: flex;
  flex-direction: column;
}

.campo-control-select {
  position: relative;
  height: 48px;
  min-height: 48px;
}

.campo-calendario .campo-control-select {
  height: 48px;
  min-height: 48px;
}

.campo-calendario label {
  top: 12px;
  transform: translateY(0);
}

.campo-select:focus-within .campo-control-select {
  border-color: transparent;
}

.campo-select:focus-within select {
  border-color: #787878;
  border-width: 2px;
}


.campo-select.valid .campo-control-select {
  border-color: transparent;
}

.campo-select.valid select {
  border-color: #40c85d;
  border-width: 2px;
}

.campo-select.valid .centro-manual-input {
  border-color: #40c85d;
  border-width: 2px;
}


.campo-select.invalid .campo-control-select {
  border-color: transparent;
}

.campo-select.invalid select {
  border-color: #ff0000;
  border-width: 2px;
}

.campo-select.invalid .centro-manual-input {
  border-color: #ff0000;
  border-width: 2px;
}


.campo-select select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 48px;
  border-radius: 4px;
  border: 1px solid #b3b3b3;
  padding: 18px 32px 8px 12px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #000000;
  background-color: #ffffff;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.campo-select .centro-manual-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 48px;
  border-radius: 4px;
  border: 1px solid #b3b3b3;
  padding: 18px 32px 8px 12px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #000000;
  background-color: #ffffff;
  outline: none;
}

.campo-select.manual-centro .campo-control-select::after {
  display: none;
}


.campo-calendario select {
  padding-top: 24px;
  padding-bottom: 6px;
  align-items: flex-end;
}

.campo-calendario .pseudo-select-value-text {
  top: 18px;
}

.formulario .campo-control-select select,
.formulario .pseudo-native-search {
  width: 100% !important;
}

.native-select-hidden {
  pointer-events: none;
  background-color: transparent;
}

.pseudo-select-value-text {
  position: absolute;
  left: 14px;
  right: 36px;
  top: 18px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #000000;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 2;
  display: none;
}

.campo-select.tiene-valor .pseudo-select-value-text {
  display: block;
}

.select-scroll-7 {
  max-height: calc(7 * 2.4em);
  overflow-y: auto;
}

.campo-select label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #000000;
  pointer-events: none;
  transition: all 0.18s ease;
  z-index: 4;
}

.campo-select .campo-control-select::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.75 8.625L12 15.375L5.25 8.625" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 4;
}

.campo-select .field-spinner {
  position: absolute;
  right: 34px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #b3b3b3;
  border-top-color: #000000;
  border-radius: 50%;
  animation: field-spinner-spin 0.8s linear infinite;
  display: none;
  pointer-events: none;
  z-index: 4;
}

.campo-select.is-loading .field-spinner {
  display: block;
}

@keyframes field-spinner-spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.campo-select.centro-open .pseudo-native-dropdown {
  display: block;
}


.campo-select:focus-within label,
.campo-select.tiene-valor label {
  top: 4px;
  transform: translateY(0);
  font-size: 13px;
  color: #737373;
}

.orden-curso-actual.campo-select.pseudo-open label,
.orden-curso-actual.campo-select.abierto label,
.orden-curso-interes.campo-select.pseudo-open label,
.orden-curso-interes.campo-select.abierto label {
  top: 4px;
  transform: translateY(0);
  font-size: 13px;
  color: #737373;
}


.campo-calendario:focus-within label,
.campo-calendario.tiene-valor label {
  top: 4px;
  transform: translateY(0);
  font-size: 13px;
  color: #737373;
}

.campo-calendario select:valid ~ label {
  top: 4px;
  transform: translateY(0);
  font-size: 13px;
  color: #737373;
}

.campo-select.valid .campo-control-select::after {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.75 8.625L12 15.375L5.25 8.625" stroke="%2334C759" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.campo-select.abierto .campo-control-select::after,
.campo-select.pseudo-open .campo-control-select::after {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.75 15.375L12 8.625L5.25 15.375" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
}

.campo-select.invalid .campo-control-select::after {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.75 8.625L12 15.375L5.25 8.625" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.pseudo-native-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 3;
}

.pseudo-native-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 4px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #b3b3b3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 900;
  flex-direction: column;
  overflow: hidden;
}

.pseudo-native-dropdown.select-scroll-7 {
  max-height: none;
  overflow: visible;
}

.pseudo-native-options {
  max-height: calc(7 * 2.4em);
  overflow-y: auto;
  flex: 1 1 auto;
}

.pseudo-native-search {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 4px 4px 0 0;
  padding: 8px 10px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  outline: none;
  box-sizing: border-box;
  background-color: #ffffff;
  -webkit-appearance: none;
  appearance: none;
}

.pseudo-native-search:focus {
  border-bottom-color: #787878;
  background-color: #ffffff;
}

.pseudo-native-search:valid {
  background-color: #ffffff;
}

.pseudo-native-search:-webkit-autofill,
.pseudo-native-search:-webkit-autofill:hover,
.pseudo-native-search:-webkit-autofill:focus {
  -webkit-text-fill-color: #000000;
  box-shadow: 0 0 0 1000px #ffffff inset;
  transition: background-color 9999s ease-in-out 0s;
}

.campo-select.pseudo-open .pseudo-native-dropdown {
  display: flex;
}

.campo-select.open-up .pseudo-native-dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 4px;
  flex-direction: column-reverse;
}

.campo-select.open-up .pseudo-native-search {
  border-bottom: none;
  border-top: 1px solid #e0e0e0;
  border-radius: 0 0 4px 4px;
}

.pseudo-native-option {
  padding: 8px 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.pseudo-native-option:hover,
.pseudo-native-option[aria-selected="true"] {
  background-color: #f5f5f5;
}

.campo-prefijo {
  width: 160px;
  flex-shrink: 0;
  min-width: 0;
  position: relative;
  overflow: visible;
}

.campo-prefijo .pseudo-native-dropdown {
  left: 0;
  right: 0;
  width: 100%;
}

.campo-prefijo .campo-control-select {
  overflow: visible;
}

.campo-telefono {
  flex: 1 1 auto;
  min-width: 0;
}

.fila-prefijo-telefono {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}

.fila-prefijo-telefono .mensaje-error {
  min-height: 16px;
}

.campo-calendario.tiene-valor select {
  font-weight: 700;
}

.testback-resumen {
  margin: 8px 0 16px 8px;
  border: 1px solid #b3b3b3;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 12px 14px;
  max-width: 700px;
  width: 100%;
  margin-right: auto;
}

.testback-resumen-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.testback-resumen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.testback-resumen-item {
  display: block;
  border: 1px solid #b3b3b3;
  padding: 6px 8px;
  border-radius: 6px;
}

.testback-resumen-text {
  color: #000000;
  word-break: break-word;
}

/* ===== Titulacion (multi) ===== */
.campo-titulacion-multiple {
  width: 100%;
  background-color: #fafafa;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.titulacion-multiple-header {
  display: block;
}

.titulacion-multiple-title {
  font-size: 16px;
  font-weight: 400;
}

.titulacion-opciones-contenedor {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.titulacion-opciones-contenedor.dragging-activo {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 4px 0;
}

.titulacion-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  color: #000000;
}

.titulacion-add-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.titulacion-opcion-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  -webkit-user-select: none;
  user-select: none;
}

.titulacion-opcion-row .campo-titulacion {
  flex: 1 1 auto;
}

.titulacion-opcion-row.dragging {
  background-color: #d0d0d0;
  border-radius: 8px;
  box-shadow: 0 0 0 1px #9a9a9a;
  padding: 8px 10px;
}

.titulacion-drag-handle {
  border: none;
  background-color: transparent;
  cursor: grab;
  width: 24px;
  height: 24px;
  flex: 0 0 18px;
  padding: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="12" height="21" viewBox="0 0 12 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.51152 12.9284C10.8859 12.9284 12 11.8443 12 10.507C12 9.16964 10.8859 8.08551 9.51152 8.08551C8.13717 8.08551 7.02304 9.16964 7.02304 10.507C7.02304 11.8443 8.13717 12.9284 9.51152 12.9284Z" fill="black"/><path d="M9.51152 21C10.8859 21 12 19.9159 12 18.5785C12 17.2412 10.8859 16.1571 9.51152 16.1571C8.13717 16.1571 7.02304 17.2412 7.02304 18.5785C7.02304 19.9159 8.13717 21 9.51152 21Z" fill="black"/><path d="M9.51152 4.85689C10.8859 4.85689 12 3.77276 12 2.43542C12 1.09808 10.8859 0.0139543 9.51152 0.0139543C8.13717 0.0139543 7.02304 1.09808 7.02304 2.43542C7.02304 3.77276 8.13717 4.85689 9.51152 4.85689Z" fill="black"/><path d="M2.48848 12.9145C3.86283 12.9145 4.97696 11.8304 4.97696 10.493C4.97696 9.15568 3.86283 8.07156 2.48848 8.07156C1.11413 8.07156 0 9.15568 0 10.493C0 11.8304 1.11413 12.9145 2.48848 12.9145Z" fill="black"/><path d="M2.48848 20.986C3.86283 20.986 4.97696 19.9019 4.97696 18.5646C4.97696 17.2272 3.86283 16.1431 2.48848 16.1431C1.11413 16.1431 0 17.2272 0 18.5646C0 19.9019 1.11413 20.986 2.48848 20.986Z" fill="black"/><path d="M2.48848 4.84293C3.86283 4.84293 4.97696 3.75881 4.97696 2.42147C4.97696 1.08413 3.86283 0 2.48848 0C1.11413 0 0 1.08413 0 2.42147C0 3.75881 1.11413 4.84293 2.48848 4.84293Z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

.titulacion-drag-handle:hover {
  filter: brightness(0.2);
}

.titulacion-drag-handle:active {
  cursor: grabbing;
}

.titulacion-remove-btn {
  border: none;
  background: none;
  cursor: pointer;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  padding: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.25 11.25L0.75 0.75M11.25 0.75L0.75 11.25" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
}

.titulacion-data {
  display: none;
}

.pseudo-select-boton {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 48px;
  border-radius: 4px;
  border: 1px solid #b3b3b3;
  background-color: #ffffff;
  padding: 18px 32px 8px 12px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #000000;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.pseudo-select-boton:focus-visible {
  outline: none;
}

.pseudo-select-texto {
  display: block;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.campo-titulacion .campo-control-select {
  height: auto;
  min-height: 48px;
}

.campo-titulacion .pseudo-select-boton {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  min-height: 48px;
  padding: 18px 32px 8px 12px;
}

.campo-titulacion.valid .pseudo-select-boton {
  border-color: #40c85d;
  border-width: 2px;
}

.campo-titulacion.invalid .pseudo-select-boton {
  border-color: #ff0000;
  border-width: 2px;
}

.campo-titulacion.tiene-valor .pseudo-select-texto {
  font-weight: 700;
}

.campo-toggle {
  display: flex;
  margin-bottom: 8px;
}

.toggle-wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.toggle-input {
  position: absolute;
  opacity: 0;
  width: 40px;
  height: 22px;
  left: 0;
  top: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  margin-right: 10px;
  cursor: pointer;
}

.slider {
  position: absolute;
  inset: 0;
  background-color: #cccccc;
  border-radius: 999px;
  transition: background-color 0.25s;
}

.slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.25s;
}

.toggle-input:checked + .switch .slider {
  background-color: #40c85d;
}

.toggle-input:checked + .switch .slider::before {
  transform: translateX(18px);
}

.texto-aviso {
  font-size: 16px;
}

.texto-aviso a {
  color: #000000;
  text-decoration: underline;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(115, 115, 115, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-contenido {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px 24px;
  position: relative;
  max-width: 540px;
  width: 100%;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.modal-header h2 {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-align: left;
  flex: 1 1 auto;
}

.cerrar-modal,
.cerrar-modal-titulacion {
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 20px;
  height: 20px;
  padding: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.6239 8.5026L16.5614 2.5651C16.8431 2.28381 17.0017 1.90209 17.002 1.50393C17.0024 1.10576 16.8445 0.72377 16.5632 0.441977C16.2819 0.160185 15.9002 0.00167771 15.5021 0.00132608C15.1039 0.000974453 14.7219 0.158807 14.4401 0.440102L8.5026 6.3776L2.5651 0.440102C2.28331 0.15831 1.90112 0 1.5026 0C1.10409 0 0.721895 0.15831 0.440102 0.440102C0.15831 0.721895 0 1.10409 0 1.5026C0 1.90112 0.15831 2.28331 0.440102 2.5651L6.3776 8.5026L0.440102 14.4401C0.15831 14.7219 0 15.1041 0 15.5026C0 15.9011 0.15831 16.2833 0.440102 16.5651C0.721895 16.8469 1.10409 17.0052 1.5026 17.0052C1.90112 17.0052 2.28331 16.8469 2.5651 16.5651L8.5026 10.6276L14.4401 16.5651C14.7219 16.8469 15.1041 17.0052 15.5026 17.0052C15.9011 17.0052 16.2833 16.8469 16.5651 16.5651C16.8469 16.2833 17.0052 15.9011 17.0052 15.5026C17.0052 15.1041 16.8469 14.7219 16.5651 14.4401L10.6239 8.5026Z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: flex-start;
}

.modal-cuerpo {
  font-size: 14px;
  line-height: 1.5;
}

.modal-cuerpo p {
  margin-top: 0;
  margin-bottom: 12px;
}

.modal-cuerpo a {
  color: #000000;
  text-decoration: underline;
}

.modal-titulacion-contenido {
  max-height: 80vh;
  max-width: none;
  width: 90%;
  display: flex;
  flex-direction: column;
}

.modal-busqueda {
  width: 100%;
  margin-bottom: 8px;
  background-color: #ffffff;
}

.buscador-input-wrapper {
  width: 100%;
  position: relative;
  background-color: #ffffff;
}

.icono-buscar {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.1035 0.5C15.3979 0.500258 19.7061 4.80904 19.7061 10.1035L19.6982 10.4912C19.6218 12.4264 18.9588 14.2962 17.792 15.8496L17.5312 16.1973L23.2666 21.9326C23.4229 22.1117 23.5067 22.3432 23.5 22.5811C23.4932 22.8225 23.3935 23.0518 23.2227 23.2227C23.0518 23.3935 22.8225 23.4932 22.5811 23.5C22.3437 23.5066 22.1125 23.4233 21.9336 23.2676L16.1973 17.5312L15.8496 17.792C14.1927 19.0365 12.1758 19.7083 10.1035 19.7061C4.80904 19.7061 0.500258 15.3979 0.5 10.1035C0.5 4.80888 4.80888 0.5 10.1035 0.5ZM11.6084 2.53516C10.1117 2.23744 8.56029 2.38972 7.15039 2.97363C5.74039 3.55767 4.5354 4.54744 3.6875 5.81641C2.83963 7.08536 2.38672 8.57737 2.38672 10.1035L2.39648 10.4863C2.49325 12.3925 3.29341 14.2006 4.64941 15.5566C6.09589 17.0031 8.05692 17.8169 10.1025 17.8193H10.1035C11.6295 17.8192 13.1208 17.3663 14.3896 16.5186C15.6586 15.6707 16.6484 14.4657 17.2324 13.0557C17.8163 11.6458 17.9686 10.0944 17.6709 8.59766C17.3732 7.10083 16.6387 5.72564 15.5596 4.64648C14.4804 3.56733 13.1052 2.8329 11.6084 2.53516Z" fill="%235B6167" stroke="%235B6167"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
}

.buscador-input {
  width: 100%;
  padding: 8px 36px 8px 36px;
  border-radius: 4px;
  border: 1px solid #b3b3b3;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-clip: padding-box;
  box-shadow: none;
}

.modal-busqueda .buscador-input {
  width: 100%;
  border: 1px solid #b3b3b3;
}

.buscador-input:focus {
  border-color: #787878;
  box-shadow: none;
  background-color: #ffffff;
}

.buscador-input:valid {
  background-color: #ffffff;
}

.buscador-input:-webkit-autofill,
.buscador-input:-webkit-autofill:hover,
.buscador-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #000000;
  box-shadow: 0 0 0 1000px #ffffff inset;
  transition: background-color 9999s ease-in-out 0s;
}

.buscador-clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: none;
  background-color: transparent;
  background-image: url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.25 11.25L0.75 0.75M11.25 0.75L0.75 11.25" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  padding: 0;
  display: none;
  text-indent: -9999px;
  overflow: hidden;
}

.modal-lista-titulaciones {
  margin-top: 8px;
  padding-right: 4px;
  overflow-y: auto;
  max-height: 60vh;
}

.area-titulaciones {
  margin-bottom: 16px;
}

.area-titulo {
  font-size: 14px;
  font-weight: 700;
  margin: 12px 0 4px 0;
  padding-bottom: 4px;
  border-bottom: 1px solid #b3b3b3;
}

.item-titulacion {
  width: 100%;
  text-align: left;
  padding: 8px 0;
  border: none;
  background: none;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  color: #000000;
  cursor: pointer;
}

.item-titulacion:hover,
.item-titulacion:focus-visible {
  background-color: #f5f5f5;
  outline: none;
}

.item-titulacion.titulacion-seleccionada {
  text-decoration: line-through;
  opacity: 0.6;
  cursor: default;
}

.item-titulacion.titulacion-seleccionada:hover,
.item-titulacion.titulacion-seleccionada:focus-visible {
  background-color: transparent;
}

.boton-enviar {
  width: 100%;
  max-width: 370px;
  height: 48px;
  background-color: #EDEDED;
  border: 1px solid #000000;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: not-allowed;
  color: #000000;
  margin-top: 0;
}

.boton-enviar:not(.boton-activo):hover {
  cursor: not-allowed;
}

.boton-enviar.boton-activo {
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
}

.boton-enviar.boton-activo:hover,
.boton-enviar.boton-activo:active {
  background-color: #ff0000;
  color: #ffffff;
}

.boton-enviar:disabled {
  background-color: #ededed;
  color: #000000;
  cursor: not-allowed;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .formulario {
    max-width: 768px;
  }

  .form-columns {
    flex-direction: row;
    justify-content: space-between;
    gap: 18px;
  }

  .form-column {
    flex: 0 0 370px;
    max-width: 370px;
  }

  .form-column + .form-column {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .form-column {
    display: contents;
  }

  .orden-nombre { order: 1; }
  .orden-apellidos { order: 2; }
  .orden-email { order: 3; }
  .orden-prefijo-telefono { order: 4; }
  .orden-pais { order: 5; }
  .orden-provincia { order: 6; }
  .orden-localidad { order: 7; }
  .orden-centro { order: 8; }
  .orden-curso-actual,
  .orden-exp-prof { order: 9; }
  .orden-curso-interes { order: 10; }
  .orden-titulacion { order: 11; }
  .orden-aviso { order: 12; }
  .orden-required-cbox { order: 13; }
  .orden-boton { order: 14; }
}

@media (max-width: 600px) {
  .contenedor-principal {
    padding: 16px 8px;
  }

  .fila-prefijo-telefono {
    gap: 16px;
  }

  .campo-prefijo {
    width: 140px;
  }

  .campo-prefijo .pseudo-native-dropdown {
    width: 100%;
  }

  .modal-titulacion-contenido {
    width: 100%;
  }

  .modal-contenido {
    width: 100%;
    max-width: none;
    height: auto;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 8px;
    padding: 16px;
    margin: 0;
  }
}


/* -- Picklist / preferencias -- */
.mobilepref-header {
  width: 100%;
  border-bottom: 1px solid #b3b3b3;
  text-decoration: none;
  display: block;
  padding: 16px 0px;
  color: rgb(51, 51, 51);
  font-weight: 600;
}

.nselected {
  color: rgb(112, 112, 112);
  display: none;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  width: 90%;
  max-width: 700px;
  max-height: fit-content;
  height: 80%;
  overflow: auto;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}

.popup-header {
  display: flex;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.close {
  width: auto;
  background: none;
  border: 0px;
  margin: 0px;
  margin-left: auto;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.btn-popup {
  width: 100%;
  background-color: rgb(239, 239, 239);
  border: 2px solid black;
  color: black;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: unset;
}

#collapsible {
  background-color: #fff;
  color: #000000;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.active,
#collapsible:hover {
  font-weight: bold;
}

#preference_wrapper {
  display: none;
}

.hidden {
  display: none;
}

.desktop-hidden {
  display: inline-block;
}

#picklistCursos tr {
  transition: 0.3s;
}

@media only screen and (min-width: 480px) {
  #picklistCursos tr:not(.selected):hover {
    background-color: lightgrey;
  }
}

#picklistCursos .selected {
  background-color: black;
  color: white;
}

.unselected {
  background-color: unset;
  color: inherit;
}

@media only screen and (max-width: 480px) {
  .clear {
    margin-bottom: 60px;
  }

  #picklistCursos tr.unselected:hover {
    background-color: unset;
    color: inherit;
  }
}

hr.desktop-hidden {
  margin: 10px 0px;
  display: block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

select {
  -webkit-appearance: none;
}

/* #region LOADING */
#loadingContainer {
  display: none;
}

span[class^="dot-"] {
  opacity: 0;
}

.dot-one {
  animation: dot-one 2s infinite linear;
}

.dot-two {
  animation: dot-two 2s infinite linear;
}

.dot-three {
  animation: dot-three 2s infinite linear;
}

@keyframes dot-one {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes dot-two {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes dot-three {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/* #region NO COURSE MESSAGE */
#messageNoCursoAdmision {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* #region TY PAGE */
.ty-page {
  width: 100%;
  text-align: center;
}

.ty-hero,
.ty-footer {
  display: flex;
  justify-content: center;
}

.ty-hero-image {
  display: block;
  padding: 0px;
  text-align: center;
  height: auto;
  width: 100%;
  border: 0px;
}

.ty-content {
  margin: 28px 20px 18px;
  text-align: center;
}

.ty-title,
.ty-subtitle {
  font-size: 26px;
  color: #ff0000;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.ty-title {
  margin-bottom: 0;
}

.ty-text {
  padding: 0px 6px;
  margin: 0;
  margin-top: 12px;
  font-family: Verdana, Geneva, sans-serif;
}

@media (min-width: 768px) {
  .ty-content {
    margin: 42px 42px 23px;
  }

  .ty-title,
  .ty-subtitle {
    font-size: 44px;
    line-height: 1.15;
  }

  .ty-text {
    padding: 0px 99px;
  }

  .ty-footer-image {
    padding: 0px;
  }
}

.ty-footer-image {
  display: block;
  padding: 0px;
  text-align: center;
  height: auto;
  max-width: 650px;
  width: 100%;
  object-fit: none;
}

.ty-footer {
  margin: 16px;
}

@media (max-width: 600px) {
  .ty-footer-image {
    padding: 0px 8px;
  }
}
/* #endregion TY PAGE */

.no-curso-text {
  text-align: left;
  padding: 0px 99px;
  margin-top: 32px;
}

.no-curso-text span {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 16px;
}

.bottom-image {
  display: block;
  padding: 0px;
  text-align: center;
  height: auto;
  max-width: 650px;
  width: 100%;
  border-top: 47px solid transparent;
  border-right: 0px;
  border-bottom: 0px;
  border-left: 0px;
  object-fit: none;
}

@media screen and (max-width: 768px) {
  .bottom-image {
    border-top: 15px solid transparent;
  }

  .no-curso-text {
    padding: 0px 20px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  .bottom-image {
    border-top: 10px solid transparent;
  }

  .no-curso-text {
    padding: 0px 15px;
    margin-top: 15px;
  }

  .no-curso-text h3 {
    font-size: 18px;
  }

  .no-curso-text span {
    font-size: 14px;
  }
}

/* #endregion NO COURSE MESSAGE */

/* Scrollbar styling */
::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgb(70, 70, 70) auto;
}

/* #endregion STYLES */