:root {
  --header-height: 63px;
  --headerTask-height: 4px;
}

.heading-exercise {
  font-weight: 700;
}

.bar-header {
  background-color: white;
  box-shadow: 0px 0px 8px -5px rgb(1, 1, 1, 0.5);
}
.login-container {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.93);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img_message {
  width: 25px;

  margin-right: 15px;

  transition: transform 0.2s;
  transform-origin: bottom center;
}
.img_message:hover {
  animation: wave 1s ease-in-out;
}
.buttom-link {
  color: black;
}
.buttom-link:hover {
  color: #8c8c8c;
}
@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(15deg);
  }
  60% {
    transform: rotate(-15deg);
  }
  80% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.password-card {
  transition: box-shadow 0.4s;
  border-radius: 15px;
  padding: 4%;
}
.home-card {
  cursor: pointer;
  transition: box-shadow 0.4s;
  border-radius: 15px;
  top: 60px;
  border: 1px solid rgb(229, 229, 229) !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
}
.home-card:hover {
  background-color: rgb(243 244 246);
}
.botons-next-submit {
  font-size: medium;
  color: black;
  padding: 7px 18px;
  border-radius: 53px;
  background: white;
  border: 1px solid transparent;
  text-decoration: none; /* Elimina la línea debajo */
  border: 1px solid rgb(229, 229, 229) !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1) !important;
}
.botons-next-submit:hover {
  background-color: rgb(243 244 246);
  color: black !important;
}
.botons-next-submit:active {
  border: 1px solid #b3adad !important;

  box-shadow: 0 1px #b3adad !important;
  transform: translateY(2px);
}
body {
  min-height: 100vh;

  background-color: white;
  font-family: Inter, sans-serif !important;
  font-size: medium;
}

html {
  height: -webkit-fill-available;
}
.flex-shrink-0 {
  width: 380px;
}

main {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  height: -webkit-fill-available;
  max-height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
}

.b-example-divider {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
    inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.bi {
  vertical-align: -0.125em;
  pointer-events: none;
  fill: currentColor;
}

.dropdown-toggle {
  outline: 0;
}

.nav-flush .nav-link {
  border-radius: 0;
}

.btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  background-color: transparent;
  border: 0;
}
.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(0, 0, 0, 0.85);
  background-color: #d2f4ea;
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform 0.35s ease;
  transform-origin: 0.5em 50%;
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(0, 0, 0, 0.85);
}
.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  display: inline-flex;
  padding: 0.1875rem 0.5rem;

  margin-left: 1.25rem;
  text-decoration: none;
}

.scrollarea {
  overflow-y: auto;
}

.fw-semibold {
  font-weight: 600;
}
.lh-tight {
  line-height: 1.25;
}

.link-dark {
  color: black;
}
.assignments {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.assignments:before,
.assignments:after {
  position: absolute;
  content: "";
  border-bottom: 1px solid red;
  border-radius: 1em;
  bottom: 0.3em;
  transition: transform 0s cubic-bezier(0.075, 0.82, 0.165, 1),
    width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 0;
}

.assignments:before {
  left: 50%;
}

.assignments:after {
  right: 50%;
}

.assignments:hover:before,
.assignments:hover:after {
  transition: transform 0.5s ease, width 0.5s ease;
}

.assignments:hover:before {
  transform: scaleX(1);
  width: 50%;
}

.assignments:hover:after {
  transform: scaleX(1);
  width: 50%;
}

.active-assignment:before,
.active-assignment:after {
  transition: transform 0.5s ease, width 0.5s ease;
  transform: scaleX(1);
  width: 50%;
}

.scrollable-menu {
  transform: translateX(-100%);
  transition: transform 0.9s ease, opacity 0.9s ease;
  padding-left: 15px;
  overflow-y: scroll;
  overflow-x: hidden; /* Evita desbordamiento horizontal */
  direction: ltr;
  width: 320px;
  height: 100vh; /* Ajusta este valor según tus necesidades */

  background: white;
  position: fixed;
  top: 115px;
  left: 320px;
  height: calc(100vh - 110px);
  z-index: 1000;
}

.scrollable-menu::-webkit-scrollbar {
  width: 10px;
}

.scrollable-menu::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}

.scrollable-menu::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: gray;
}
.task-bar {
  position: fixed;
  width: 100%;
  top: var(--header-height);
  z-index: 1000;
}

.content {
  position: fixed;
}
.boton-draggable p {
  top: 2%;
}
.boton-draggable {
  background-color: white;
  border-radius: 10px;
  border: 1px solid rgb(229, 229, 229);
  display: inline-block;
  padding: 4px 8px;

  font-weight: 600;
  margin-bottom: 0px;
  max-width: 300px;
  margin-top: 2px;
  white-space: normal; /* Permite que el texto se divida en varias líneas */
  word-wrap: break-word;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
}
.dropzone .boton-draggable {
  width: 9.2rem;
  display: block;
  text-align: center;
  overflow: hidden; /* Oculta el texto que excede el contenedor */
  white-space: nowrap; /* Evita que el texto se divida en varias líneas */
  text-overflow: ellipsis;
}

.boton-draggable:hover {
  cursor: grab !important;
}

.sentences {
  display: grid;
  align-content: center;
}
.btn-check {
  visibility: hidden;
}
label {
  cursor: pointer;
}

input[type="radio"].btn-check:checked + .isDisabledSelect {
  background-color: rgb(198, 207, 228) !important;
  color: rgb(123, 99, 99);
}
.sentencesSelect {
  padding-left: 4px;
}
.asd {
  font-size: 0;
}
.btn-light {
  height: 65% !important;
  padding: 0.15rem 0.6rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.btn-check {
  display: none;
}
#dropdown-basic {
  color: black;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  font-weight: 600;
  line-height: 0.7;
  border-radius: 0.2rem;
  padding-bottom: 6% !important;
  position: relative;
  top: -10%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.dropdown-toggle::after {
  margin-left: 0.655em;
}
.dropdown-toggle {
  position: relative;
  font-weight: 600;
  border: 1px solid rgb(229, 229, 229);
  background-color: white !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  border-radius: 12px !important;
}
.selected {
  background-color: rgb(132, 216, 255) !important;
  border: 1px solid rgb(24, 153, 214) !important;
}

.fixed-width-toggle {
  width: 7.5rem; /* Aquí puedes ajustar el ancho fijo deseado */
}

.sentence-part {
  display: inline-block;
}

.correct-answer {
  font-weight: bold;
  background-color: pink !important;
  border-radius: 7px;
  padding: 0.2rem 1rem;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  border: 1px solid #b4adad !important;
}

.correct {
  background-color: #89df74 !important;
  opacity: 0.65 !important;
  border: 1px solid #70a366 !important;
}

.incorrect {
  background-color: #ff621e !important;
  opacity: 0.65 !important;
  border: 1px solid #e66e39 !important;
}

.correct::after,
.incorrect::after {
  content: "";
  position: absolute;
  border-top: none;

  right: 10px;

  font-size: 18px;
}

.texto {
  display: inline;
  /* Permite la división de texto en múltiples líneas */
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.caja {
  position: sticky;
}
.dropContainer {
  display: inline-grid;
  width: 120px;
  justify-items: center;
}

.QuestionsContainer {
  width: 100%;
  display: flex;

  justify-content: center;
  align-items: center;
}

.text_content {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  position: relative;
  width: 70%;
  flex-direction: column;
  min-height: 73vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.container-content {
  padding-left: 33%;
  z-index: 1;
  width: 88%;
  min-height: 80vh;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  top: calc(var(--header-height) + var(--headerTask-height));
  transition: padding-left 0.5s ease;
}
.container-content.no-side-bar {
  padding-left: 30%;
  z-index: 1;
  width: 88%;
  min-height: 80vh;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;

  top: calc(var(--header-height) + var(--headerTask-height));
}

.droppable-zone-sentence-container {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-left: auto;
  margin-right: auto;
}
.dropzone-main {
  background-color: rgb(245, 245, 245);

  padding: 2%;
  position: relative;
  vertical-align: middle;
  border-radius: 20px;
  width: 100%;

  overflow: hidden;
  transition: height 0.3s ease-in-out;
  min-height: 110px;
}
.dropzone {
  background-color: #e0eff1;
  width: 9.2rem;
  height: 33.6px;
  display: inline-flex;
  margin-bottom: 0;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  position: relative;
  vertical-align: middle;
  top: -2px;
}
.dropzone .boton-draggable {
  margin-top: 0px;
}
.dropzone-main .boton-draggable {
  margin-right: 2px;
}
.squareChild {
  border: 1px solid black;

  min-width: "34px";

  cursor: pointer;
  flex-shrink: 0;
  font-size: 14px;
}

.img_answer {
  width: 21px;
  height: 23px;
  display: inline-block;
  margin-right: 10px;
}
.alert-popup-success {
  border-color: #c3e6cb;
  color: #155724;
  padding: 10px;
  border-radius: 5px;
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 1000;
  background-color: white !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
}

.squareChild {
  width: 26px;
  margin: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.squareChild:hover {
  transform: scale(1.1);
}

.squareChild.selected {
  border: 1px solid white;
  position: relative;
}
img .navHeaderFont {
  font-size: 1.3rem;
  color: white;
}

.iconStyle {
  height: 55px;

  border-radius: 3px;
  border: 1px solid transparent;
}
.img_modul {
  width: 110px;
  height: 110px;
  display: inline-block;
  padding: 8px;
  border-radius: 20px;
}

.boton-quiz {
  position: relative;
  border: 1px solid rgb(229, 229, 229);

  padding: 10px;
  border-radius: 12px;
  max-width: 500px;
  display: flex;
  justify-content: flex-start;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  white-space: break-spaces;
}
.boton-quiz:hover {
  cursor: pointer !important;
  background-color: rgb(243 244 246);
}

input[type="radio"].radio-quiz {
  flex-shrink: 0; /* Evita que el input radio cambie de tamaño */
}

.checkbox-quiz {
  width: 20px; /* Ajusta el tamaño según tus necesidades */
  height: 20px; /* Ajusta el tamaño según tus necesidades */
}

/* Cambiar el color del radio button cuando está seleccionado */
input[type="radio"].radio-quiz {
  appearance: none;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid rgb(93, 93, 96);
  margin-right: 10px;
  position: relative;
  background-color: transparent;
}

.selected input[type="radio"].radio-quiz {
  appearance: none;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid white;
  margin-right: 10px;
  position: relative;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
input[type="radio"].radio-quiz:checked::before {
  content: "";
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background-color: white;
  position: absolute;
}

.checkbox-quiz {
  appearance: none;
  width: 23px;
  height: 23px;
  border: 1px solid rgb(93, 93, 96);
  background-color: transparent;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}

.checkbox-quiz:checked::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.285 6.708l-1.536-1.509L9 14.153 5.25 10.442 3.714 11.951 9 17.292z"/></svg>');
  background-size: 22px 22px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.boton-quiz.selected .checkbox-quiz {
  border: 1px solid white;
}

.select-quiz {
  font-style: italic !important;

  padding: 1px 22px;
  display: flex;
  justify-content: center;

  font-weight: 600;
  background-color: white;
  border-radius: 10px;
  border: 1px solid rgb(229, 229, 229);
}
.select-quiz:hover {
  background-color: rgb(243 244 246);
}

.click-quiz {
  background-color: white;
  border-radius: 10px;
  border: 1px solid rgb(229, 229, 229);
  display: flex;
  justify-content: center;

  font-weight: 600;
  display: flex;
  position: relative;
  padding: 0% 3.3%;
  align-items: center;
  margin: 4px;
  cursor: pointer;
  height: 40px;

  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
}
.click-quiz-main {
  padding-top: 7%;
}
.click-quiz-sentences {
  position: relative;
  display: flex;
  width: 100%;
  height: 100px;
  border: 2px solid #dad5d5;
  flex-wrap: wrap;
  border-left: 0px;
  border-right: 0px;
}
.click-quiz-words {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: rgb(245, 245, 245);
  border-radius: 20px;

  min-height: 140px;
  padding: 22px;
}
.incorrect-answer {
  color: red;
}

.ant-progress-outer {
  /* Clases que estan adentro del objeto Progress de ant desings */
  width: 95% !important ;
  height: 6px;
}
.ant-progress-text {
  padding-left: 20px;
  font-size: 24px;
  position: relative;
  bottom: 3px;
}
.ant-progress {
  display: flex;
}
.ant-progress-text svg {
  width: 25px;
  height: 25px;
}

:where(.css-j9bb5n).ant-result .ant-result-icon {
  margin-bottom: 0px;
  text-align: center;
}
:where(.css-j9bb5n).ant-result .ant-result-icon > .anticon {
  font-size: 25px;
}
:where(.css-j9bb5n).ant-result .ant-result-icon {
  margin-bottom: 0px;
  text-align: center;
}
:where(.css-j9bb5n).ant-result {
  padding: 0px;
  display: flex;
}
.profile_form {
  border: 1px solid transparent;
  background: white;
  margin-top: 5%;
  height: 80vh;
  justify-content: center;
  width: 50% !important;
}

abbr {
  text-decoration: none !important;
}

.div_img_speaker img {
  width: 25px;
  transition: transform 0.7s;
}

.div_img_speaker:hover img {
  animation: ease-in-out;
  transform: scale(1.2);
}
.img_logo {
  height: 35px;
  width: 175px;
}

.ant-modal-confirm-body {
  /* Modificar el modal de ant Desings*/
  padding: 15px;
  font-family: Inter, sans-serif !important;
}
.ant-btn {
  font-family: Inter, sans-serif !important;
}

.scrollable-menu.active {
  left: 0; /* Muestra la barra lateral cuando está activa */
  opacity: 1;
  transform: translateX(0);
}
.scrollable-menu {
  left: -320px; /* Oculta la barra lateral */
  opacity: 0;
}

@media (max-width: 1394px) {
  .container-content {
    padding-left: 0px;
  }
  .container-content.no-side-bar {
    padding-left: 0px;
  }
}

@media (max-width: 770px) {
  /* Cuand */
  .click-quiz {
    padding: 0% 7.3%;
  }
  .text {
    min-width: 92%;
  }
  .click-quiz-words {
    width: 100%;
    height: 171px;
  }
  .container-content.no-side-bar {
    width: 100%;
  }
  .container-content {
    width: 100%;
  }
}

@media (max-width: 422px) {
  /* Cuand */
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Clase para aplicar la animación de parpadeo */
.blinking {
  animation: blink 1s infinite;
}
.record-button {
  cursor: pointer;
  display: flex;
}

.icon {
  width: 24px;
}

.recording .inner-square {
  animation: blink 1s infinite;
}

.translate_icon.block {
  display: none;
}
.translate_icon.show {
  color: gray;
  transition: color 0.3s ease;
  width: 25px;
  height: 21.5px;
  cursor: pointer;
  position: absolute;

  padding: 3px;
  z-index: 2;
  background-color: rgb(245, 245, 245);
}

.translate_icon:hover {
  color: black;
}

/**/

.play_audio_icon.block {
  display: none;
}
.play_audio_icon.show {
  color: gray;
  transition: color 0.3s ease;
  width: 25px;
  border-radius: 6px 0px 0px 6px;
  height: 21.5px;
  cursor: pointer;
  position: absolute;

  padding: 3px;
  z-index: 2;
  background-color: rgb(245, 245, 245);
}

.play_audio_icon.not-text {
  transform: translateY(31%) translateX(-173%);
}
.play_audio_icon.is-text {
  transform: translateY(16%) translateX(-175%);
  height: 20.4px;
}
.translate_icon.not-text {
  transform: translateY(31%) translateX(-89%);
}
.translate_icon.is-text {
  transform: translateY(16%) translateX(-100%);
  height: 20.4px;
}
.play_audio_icon.is-drag {
  transform: translateY(32%) translateX(-173%);
}
.translate_icon.is-drag {
  transform: translateY(32%) translateX(-89%);
}

.play_audio_icon:hover {
  color: black;
}
.bottom_panel {
  display: flex;
  height: 53px;

  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: white;

  padding: 10px 20px;
  box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.1);
}
.text_box {
  padding-top: 10%;
  padding: 20px;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  width: 56%;
}
.bottom_play_icon,
.bottom_close_icon {
  cursor: pointer;
}

.first_sentence {
  padding-left: 5%;
}
@media (max-width: 600px) {
  .bottom_play_icon {
    border-radius: 50%;
  }

  .text_box {
    width: 100%;

    padding-bottom: 80px; /* Ajusta este valor según la altura del panel */
  }
  .first_sentence {
    padding-left: 10%;
  }
}

.options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  width: 66%;

  /* 2 columnas de igual ancho */ /* Centrar los elementos horizontalmente */
  /* Puedes quitar flex-wrap y justify-content, ya no hacen falta con Grid */
}

.option {
  aspect-ratio: 0.8;
  word-break: break-all;
  overflow: hidden;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 12px;
  margin: 10px;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s, width 0.3s, height 0.3s; /* Transición suave para el cambio de tamaño */
  width: 25vw; /* Ajusta el ancho según el ancho de la pantalla */
  max-width: 205px; /* Ancho máximo */
  height: 29vh; /* Ajusta la altura según el alto de la pantalla */
  max-height: 254px; /* Altura máxima */
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  border: 1px solid rgb(229, 229, 229);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
}

.option:hover {
  background-color: rgb(243 244 246);
}

.option.selected {
  background-color: #add8e6; /* Fondo azul claro */
}

.option img {
  max-width: 80%; /* Ajusta el ancho de la imagen para que sea proporcional al contenedor */
  height: 100%;
  display: block;
  object-fit: contain; /* Se ajusta sin distorsionar la imagen */
  margin: 0 auto 10%;
}

.option p {
  margin: 0;
  font-weight: 600;
}

/* Media query para pantallas pequeñas */

.text_img {
  width: 50%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  border-radius: 24px;
}

.text_img.fade-in {
  opacity: 1;
}
.img-no-show {
  display: none !important;
}
.icon-pronounce-text {
  color: #4074ff;
  transition: 0.3s;
}
.icon-pronounce-text:hover {
  color: grey;
  cursor: pointer;
}
.icon-pronounce {
  color: #4074ff;
  transition: 0.3s;
}
.icon-translate {
  color: grey;
  transition: 0.3s;
}
.icon-pronounce:hover {
  color: grey;
}
.icon-translate :hover {
  color: #4074ff;
}
.highlight-container {
  display: flex;
  flex-wrap: wrap;
}

/* Clase base para todas las palabras */
.word {
  padding: 0px 2px;
  border-radius: 8px;
  margin-left: 0px; /* Ajustaremos para la 1.ª palabra con otra clase */
  font-size: 18px;
  transition: background-color 0.3s ease;
  color: inherit; /* Por defecto */
  display: inline-block;
}

/* Para la primera palabra, ajustamos margin-left */
.word.first {
  margin-left: 5.3%;
}

/* Si la palabra es "correct" */
.word.word-correct {
  background-color: #2196f3;
  color: white;
}

/* Si la palabra es "incorrect" (o tu equivalente) */
.word.word-wrong {
  background-color: #ff9d72;
  color: white;
}

/* Si no hay información de correctitud (undefined) */
.word.undefined {
  background-color: transparent;
  color: inherit;
}

/* Para la PRIMERA palabra (idx === 0) sobreescribimos padding-left */
.firstWord {
  padding-left: 0px !important;
}

/* Si la palabra TERMINA en . ! ? ponemos padding-right en 0 */
.endsWithPunctuation {
  padding-right: 0px !important;
}

/* Estado de palabra "correcta" */

.profile-box {
  border-radius: 11px;
  position: relative;
  padding: 2%;
  border: 1px solid rgb(229, 229, 229) !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  margin-bottom: 1rem;
}
.profile-text {
  color: rgb(102, 102, 102);
  font-size: 14px;
}
.button-listening {
  padding: 15px 25px;
  font-size: 35px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  border-radius: 15px;
  background-color: rgb(132, 216, 255) !important;
  border-radius: 17px;
  border: 1px solid rgb(24, 153, 214);
  box-shadow: 0 4px 0 rgb(24, 153, 214) !important;
}

.button-listening:active {
  border: 1px solid rgb(24, 153, 214);

  box-shadow: 0 1px rgb(24, 153, 214) !important;
  transform: translateY(5px);
}
@media (max-width: 770px) {
  .button-listening {
    padding: 9px 18px;
    font-size: 35px;
  }
}
.text-span span .item {
  font-size: 18px !important;
}
.item {
  font-size: large;
  transition: background-color 0.3s;
  border-radius: 0px 5px 5px 0px;
  background-color: transparent;
  cursor: pointer;
}
.dialoge-mode {
  display: inline-flex;
}
.is-block {
  display: inline-flex;
  align-items: flex-start;
}
.item-hovered {
  background-color: rgb(245, 245, 245);
}
.item-inactive {
  color: gray !important;
}
.item-active {
  color: black;
}
.item:hover {
  background-color: rgb(245, 245, 245);
}
.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
}
#dropdown-basic:focus {
  outline: none !important;
  box-shadow: none !important;
}
.quiz-sentence-question {
  white-space: pre-line;
  font-size: 18px;
}
.button-next {
  outline: none !important;
  box-shadow: none !important;
}
.input-box {
  min-height: 140px;
  background-color: rgb(245, 245, 245);
  width: 100%;
  padding: 5% 5% 5% 5%; /* Puedes ajustar estos valores */
  padding-top: 4%; /* O un valor fijo para empujar el texto hacia arriba */
  font-size: 18px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 0;
  line-height: 1.2; /* Un valor normal en lugar de uno grande */
  font-weight: 500;
}

.input-box:focus {
  outline: none; /* Elimina el borde (outline) negro al hacer click o escribir */
}
.login-father {
  width: 100%;
  height: 98vh;
  display: flex;
  flex-direction: row;
  padding: 1rem;
}
.login-box {
  width: 50%;
}
.login-form {
  height: 68%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
  padding: 8%;
  border-radius: 14px;
  border: 1px solid rgb(229, 229, 229);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
}

.profile-text {
  color: #c3c4cb;
  font-family: "Poppins", sans-serif;
}
.profile-logo-img {
  background-color: #2a5ad8;
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.profile-logo-img {
  overflow: hidden;
  position: relative;

  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.bg-img {
  position: absolute;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
  pointer-events: none; /* para que no bloqueen clics */
}

/* Imagen 1 */
/* Imagen 1 */
.img1 {
  top: -36%;
  left: -95%;
  width: 173%;
  height: 100%;
  transform: rotate(35deg);
  background-image: url("/Белый логотип на прозрачном фоне.png");
}

/* Imagen 2 */
.img2 {
  bottom: 55%;
  right: -20%;
  width: 76%;
  height: 64%;
  transform: rotate(180deg);
  background-image: url("/i.png");
}

/* Imagen 3 */
.img3 {
  top: 45%;
  right: -33%;
  width: 100%;
  height: 70%;
  background-image: url("/R Белый логотип на прозрачном фоне.png");
}

/* Para que el contenido quede encima de las pseudo-imágenes */
.profile-logo-img > * {
  position: absolute;
  z-index: 1;
}

.not-allowed {
  background-color: gainsboro;
  color: gray;
}
.not-allowed:hover {
  cursor: not-allowed;
}
.img-profile {
  width: 70%;
}
.font-profile {
  font-family: "Poppins", sans-serif;
}
.form-control {
  border: none;
  padding: 0rem 0.75rem !important;
}

.transcription-container {
  font-size: large;
  display: flex;
  flex-wrap: wrap;
}

.transcription-word {
  padding-right: 5px;
}

.transcription-letter {
  transition: color 0.3s ease;
  font-size: 18px;
}

.hidden-letter {
  color: white;
}

.spoken-letter {
  color: black;
}

.correct-letter {
  color: green;
}

.incorrect-letter {
  color: red;
}
.hidden-letterText {
  color: grey;
}
.flashcard {
  width: 95%;
  height: 350px;
  perspective: 1000px;
  margin: 20px auto;
  cursor: pointer;
  position: relative;
}

.flashcard-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.1s;
  transform-style: preserve-3d;
}

/* Efecto de volteo */
.flipped {
  transform: rotateY(180deg);
}

.flashcard-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  border: 1px solid rgb(229, 229, 229);
  padding: 5%;
}

/* La parte trasera se rota para quedar oculta inicialmente */
.flashcard-back {
  transform: rotateY(180deg);
}

/* Animaciones para la navegación "Siguiente" (next) */
/* La tarjeta actual sale de derecha a izquierda */
.exit-right {
  animation: exitAnimationRight 0.1s ease-out forwards; /* Increased duration, added ease-out */
}

@keyframes exitAnimationRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-8%); /* Reduced translation for a subtler exit */
  }
}

/* La nueva tarjeta entra desde la derecha */
.enter-right {
  animation: enterAnimationRight 0.1s ease-out forwards; /* Increased duration, added ease-out */
}

@keyframes enterAnimationRight {
  0% {
    opacity: 0;
    transform: translateX(8%); /* Reduced translation for a subtler entrance */
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animaciones para la navegación "Anterior" (prev) */
/* La tarjeta actual sale de izquierda a derecha */
.exit-left {
  animation: exitAnimationLeft 0.1s ease-out forwards; /* Increased duration, added ease-out */
}

@keyframes exitAnimationLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(8%); /* Reduced translation for a subtler exit */
  }
}

/* La nueva tarjeta entra desde la izquierda */
.enter-left {
  animation: enterAnimationLeft 0.1s ease-out forwards; /* Increased duration, added ease-out */
}

@keyframes enterAnimationLeft {
  0% {
    opacity: 0;
    transform: translateX(-8%); /* Reduced translation for a subtler entrance */
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.flash_card_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.flashcard {
  perspective: 1000px;
}

.sound-icon {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 0% 5%;

  margin: 2%;
  border-radius: 7px;
}
.sound-icon:hover {
  background-color: rgb(243 244 246);
}
.special_char {
  margin-right: 1%;
  background-color: white;
  border-radius: 18%;
  border: 1px solid rgb(229, 229, 229);
  padding: 1% 2%;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
}
.special_char:hover {
  background-color: rgb(243 244 246);
}

/* Estilo para la barra (track) */
.custom-audio-range-quiz {
  height: 4px !important; /* Altura de la barra (puedes ajustarla) */
  background: #e0e0e0; /* Color del track */
  border-radius: 5px !important; /* Bordes redondeados */
  outline: none !important;
  margin: 0;
  padding: 0;
  width: 100% !important;
}

/* Personaliza el pulgar (thumb) para navegadores WebKit (Chrome, Safari, etc.) */
.custom-audio-range-quiz::-webkit-slider-thumb {
  -webkit-appearance: none; /* Quitar estilos por defecto */
  width: 6px !important; /* Ancho del thumb */
  height: 6px !important; /* Altura del thumb */
  background: #007bff; /* Color del thumb */
  border-radius: 50%; /* Redondear el thumb */
  cursor: pointer;
  border: none;
}

/* Para Firefox */
.custom-audio-range-quiz::-moz-range-thumb {
  -webkit-appearance: none; /* Quitar estilos por defecto */
  width: 6px !important ;
  height: 6px !important;
  background: #007bff;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* Opcional: Personaliza la pista en Firefox */
.custom-audio-range-quiz::-moz-range-track {
  background: #e0e0e0;
  height: 10px !important;
  border-radius: 5px !important;
}

/* Estilos base para el componente */
.matching-quiz {
  font-family: Arial, sans-serif;
}

/* Contenedor de las columnas */
.quiz-container {
  display: flex;
  justify-content: space-between;
}

/* Estilo para cada columna */
.column {
  width: 45%;
}

/* Estilo base para cada cuadro del quiz */
.quiz-item {
  padding: 10px;
  margin: 5px;
  border: 1px solid #ccc;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid rgb(229, 229, 229);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
}

/* Estilo aplicado cuando el elemento es emparejado (se "grisa") */
.quiz-item.matched {
  background-color: #ddd;
  cursor: default;
}

/* Estilo aplicado cuando el elemento está seleccionado (se "ilumina") */
.quiz-item.selected {
  background-color: #b3d9ff;
}

/* Estilo para el mensaje de completado */
.completed {
  margin-top: 20px;
  color: green;
  font-weight: bold;
  text-align: center;
}
.continuation-stack {
  width: 100%;
}
.continuation-stack > * {
  width: 100%;
  margin-bottom: 5rem;
}

.input_sentences {
  display: inline-block;
  width: auto;
  border: 1px solid rgb(229, 229, 229);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  border-radius: 10px;
  padding: 0.7%;
}
.input_sentences:focus {
  outline: none; /* Elimina el borde (outline) negro al hacer click o escribir */
}
.img_wrapper_quiz {
  display: flex;
  background-color: rgb(255, 255, 255);
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  width: 90%;
  height: 450px;
  margin-bottom: 2%;
}

.img_quiz {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  color: transparent;
}
.video_quiz {
  width: 100%;
  height: 100%;
  object-fit: contain; /* o “cover” si prefieres recortar y llenar */
  border-radius: 15px; /* opcional, para que cuadre con el wrapper */
}
.sentence_img_wrapper {
  display: flex;
  background-color: rgb(255, 255, 255);
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: 136px;
  margin-bottom: 2%;
}

.sentence-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.sentence-item > * {
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mask-area {
  color: transparent; /* oculta el texto original */
  position: relative; /* para posicionar el ::after */
  display: inline-block; /* hace que ::after se comporte bien */
  cursor: pointer;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.4; /* para que se note que es oculto */
}
.mask-area:hover {
  opacity: 1; /* para que se note que es oculto */
}
/* 2) Forza un color visible en el ::after */
.mask-area::after {
  content: "?";
  position: absolute;
  top: 0;
  left: 0;
  color: #000; /* aquí defines el color de los puntos */
  pointer-events: none; /* para que el click vaya al span padre */
  transition: opacity 0.3s ease;
  opacity: 1;
}

/* 3) Al revelar, quitamos el transparent y los puntos */
.mask-area.revealed {
  color: inherit;
  opacity: 1;
}
.mask-area.revealed::after {
  content: "";
  opacity: 0;
}
.square_drag_drop {
  flex: 1 1 45%;
  min-width: 180px;
  min-height: 120px;
  margin: 8px;
  padding: 2%;
  border-radius: 15px;
  background-color: white;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(229, 229, 229) !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
}

.video_container_quiz {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video_quiz {
  width: 100%;
  display: block;
}

.video_controls_quiz {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
}

.video_controls_quiz button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.video_controls_quiz input[type="range"] {
  flex: 1;
}

.transcription_quiz {
  max-height: 200px;
  overflow-y: auto;
  padding: 0.75rem;
  background: #fff;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.4;
}
.subtitles-container {
  margin-top: 1rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  max-height: 100px;
  overflow-y: auto;
}
.time_display {
  color: white;
}
/* TranslatePopup.css */
/* Estilo del botón para abrir el traductor en el header */ /* --- Botón del traductor (sin cambios) --- */
.translator-trigger-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0 5px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.translator-trigger-button:hover {
  transform: scale(1.1);
}

/* --- NUEVO: Contenedor para el botón y el pop-up --- */
.translator-container {
  position: relative; /* Contexto de posicionamiento */
  z-index: 1050; /* Asegura que esté por encima de otros elementos */
}

/* --- ESTILO MODIFICADO: Contenido del pop-up --- */
.translator-popup {
  position: absolute; /* Posición absoluta respecto a .translator-container */
  top: calc(100% + 10px); /* 100% (abajo del contenedor) + 10px de espacio */
  right: 0; /* Lo alinea a la derecha del contenedor */

  background-color: white;
  width: 450px; /* Ancho fijo o como prefieras */
  max-width: 90vw;
  padding: 20px 25px 25px;
  border-radius: 12px;

  cursor: default;

  /* Nueva animación */
  animation: fadeIn 0.2s ease-out;
  border: 1px solid rgb(229, 229, 229) !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
}

/* Si prefieres que el pop-up esté centrado debajo del botón en lugar de alineado a la derecha:
.translator-popup {
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  ... (el resto de las propiedades)
}
*/

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* El resto de los estilos del contenido del pop-up (sin cambios) */
.translator-popup h2 {
  margin-top: 0;
  color: #333;
}

.translator-popup p {
  color: #666;
  margin-bottom: 20px;
}

.translation-interface {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
}

.text-input {
  flex-grow: 1;
  padding: 0.5rem;
  font-size: 18px;

  border-radius: 8px;
  transition: border-color 0.2s;
  width: 100%;
  margin-left: 1rem;
  border: 1px solid rgb(229, 229, 229) !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
}
.text-input:focus {
  outline: none; /* This will still remove the outline */
}
.translated-output {
  flex-grow: 1;
  padding: 0.5rem;
  font-size: 18px;

  background-color: #e9ecef;
  border: 1px solid #ddd;
  border-radius: 8px;

  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid rgb(229, 229, 229) !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  margin-left: 1rem;
}

.translated-output .placeholder {
  color: #888;
  font-weight: normal;
  font-style: italic;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  border: none;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 30px;
  text-align: center;
  transition: background-color 0.2s;
}

.close-button:hover {
  background: #ddd;
}
.sentence-quiz-all {
  font-size: 18px;
  white-space: pre-wrap;
}
.theory-component {
  width: 70%;
}

.modal-flashcard {
  border-radius: 11px;
  position: relative;
  padding: 2%;
  border: 1px solid rgb(229, 229, 229) !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
}
.modal-input {
  border-radius: 5px;
  border: 1px solid rgb(229, 229, 229) !important;
  padding: 0.2rem;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  width: 50%;
}
.modal-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.assignment-filter {
  position: relative;
  display: inline-block;
}

.dropdown-checklist {
  position: absolute;
  top: 40px;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.checkbox-label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.botons-models {
  font-size: medium;
  color: black;
  padding: 0.2rem 1.2rem;
  border-radius: 53px;
  background: white;
  border: 1px solid transparent;
  text-decoration: none; /* Elimina la línea debajo */
  border: 1px solid rgb(229, 229, 229) !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1) !important;
}
.botons-models:hover {
  background-color: rgb(243 244 246) !important;
  color: black !important;
}
.botons-models:active {
  border: 1px solid #b3adad !important;

  box-shadow: 0 1px #b3adad !important;
  transform: translateY(2px);
}

.dialog-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px;
}

.message-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 1.5rem;
}

.message-group.left {
  align-items: flex-start;
}

.message-group.right {
  align-items: flex-end;
}

.message-name {
  font-weight: bold;
  margin-bottom: 4px;
  color: dimgrey;
}

/* Wrapper de burbuja + botón */
.bubble-with-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 70%;
}

/* La burbuja de texto */
.message-bubble {
  padding: 8px 35px;
  border-radius: 12px;
  background-color: #f0f0f0;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  width: 100%;
  font-size: 18px;
}

/* Segundo personaje: burbujas con otro fondo */
.message-group.right .message-bubble {
  background-color: #f1f6f4;
}

/* Cuando hay selección activa, las no seleccionadas se ponen grises */
.message-bubble.not-selected {
  color: #888;
}

/* Burbuja seleccionada: fondo más oscuro y texto negro */
.message-bubble.selected-message {
  color: #000;
  position: relative;
  background-color: rgb(132, 216, 255) !important;
  border: 1px solid rgb(24, 153, 214) !important;
}

/* Botón pequeño al lado de la burbuja seleccionada */
.print-btn {
  font-size: 14px;
  padding: 2px 6px;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* Texto impreso debajo */
.printed-message {
  margin-top: 18px;
  font-style: italic;
}
.message-icons-play {
  position: absolute;
  left: 13px;
}
.message-icons-translate {
  position: absolute;
}
.transcript {
  font-style: italic;
  font-size: smaller;
  color: dimgrey;
}
.icon-playback-message {
  color: dimgrey;
}
.record-control {
  position: fixed; /* fija al viewport en lugar del contenedor */
  bottom: 3rem; /* a 1rem del borde inferior */
  right: 20.5rem; /* a 2.5rem del borde derecho */
  z-index: 1000; /* por si hay overlays / modales */
}

.record-message {
  color: #4074ff;
  cursor: pointer;
}
.QuestionsContainer
  .text_content
  .message-group:last-child
  .bubble-with-btn:last-child
  .message-bubble {
  margin-bottom: 15rem;
}

/* Posiciona el contenedor del icono de check */
.message-icons-check {
  position: absolute;
  right: -15px; /* Ajusta para que quede fuera de la burbuja */
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Estilo del ícono de check */
.icon-check {
  font-size: 28px; /* Tamaño del ícono */
  color: #28a745; /* Verde de éxito */
  background-color: white;
  border-radius: 50%;
  padding: 2px;
  transition: transform 0.2s ease;
}

.icon-check:hover {
  transform: scale(1.15); /* Efecto al pasar el ratón */
}

/* Ajusta el contenedor principal de la burbuja para que el ícono no se corte */
.bubble-with-btn {
  position: relative;
}
/* en tu CSS global o módulo */
[id^="item-"] {
  /* Pon aquí la altura de tu header (por ej. 46px), 
     o un poco más si quieres espacio extra */
  scroll-margin-top: 140px;
}

.change-password-container {
  display: flex;
  justify-content: center;
}
.password-div {
  width: 50%;
}
.ant-skeleton-element {
  width: 100% !important;
}

@media (max-width: 770px) {
  .img_wrapper_quiz {
    width: 100%;
  }
  .sentence_img_wrapper {
    height: 6rem;
  }
  .dropzone {
    width: 5.5rem;
  }
  .fixed-width-toggle {
    width: 5.2rem; /* Aquí puedes ajustar el ancho fijo deseado */
  }
  .img_wrapper_quiz {
    height: 330px;
  }
  .theory-component {
    width: 90%;
  }
  .record-control {
    right: 3.5rem; /* a 2.5rem del borde derecho */
  }
  .text_content {
    width: 90%;
  }
  .password-div {
    width: 100%;
  }
}

@media (max-width: 1394px) {
  .login-father {
    flex-direction: column-reverse;
    padding: 0px !important;
  }
  .profile-logo-img {
    height: 70%;
    width: 100%;
  }
  .login-container {
    height: 100%;
    padding: 0px;
    width: 100%;
  }
  .login-form {
    border: none;
    box-shadow: none;
    width: 100%;
  }
  .login-box {
    width: 100%;
    height: 130%;
  }
  .profile-logo-img {
    border-radius: 0px;
  }
  .bubble-with-btn {
    width: 80%;
  }
  .profile_form {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .option {
    width: 41vw; /* Ancho responsive para pantallas pequeñas */
    height: 26vh; /* Altura responsive para pantallas pequeñas */
  }
  .option:nth-child(3) {
    grid-column: 1 / span 2;
    justify-self: center;
  }
  .option img {
    max-width: 90%;
  }
  .botons-next-submit {
    font-size: smaller;
  }
  .options {
    grid-template-columns: repeat(2, 1fr);
  }
  .profile_form {
    width: 95% !important;
  }
  .translator-popup {
    right: -53px;
  }
}
