@charset "UTF-8";
.boton {
  background-color: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
}

.only-desktop {
  display: block;
}
@media screen and (max-width: 900px) {
  .only-desktop {
    display: none;
  }
}

.only-mobile {
  display: none;
}
@media screen and (max-width: 900px) {
  .only-mobile {
    display: flex;
    align-items: center;
  }
}

/* ...resto del archivo igual que antes... */
header {
  background-color: #ffffff;
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ...resto del archivo igual que antes... */
main {
  display: flex;
  flex-direction: column;
}

/* ...resto del archivo igual que antes... */
.sidebar {
  width: 250px;
  background-color: #f1f1f1;
  padding: 20px;
  border-right: 1px solid #ddd;
}

/* ...resto del archivo igual que antes... */
.page-list {
  list-style: none;
  padding: 0;
}

/* ...resto del archivo igual que antes... */
.editor {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
}

/* ...resto del archivo igual que antes... */
.toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

/* ...resto del archivo igual que antes... */
.content {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

button {
  background-color: transparent;
  border: transparent;
}

.btn {
  background-color: #000;
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  border: 1px solid #000;
  transition: all 0.3s ease;
  text-align: left;
}
.btn:hover {
  color: #000;
  background-color: #fff;
}
.btn:hover svg path {
  fill: #000;
}
.btn .icon-play,
.btn .ico-play {
  margin-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn.btn-primary {
  background-color: #197EAE;
  border-color: #197EAE;
}
.btn.btn-primary:hover {
  background-color: #fff;
  color: #197EAE;
}
.btn.btn-primary:hover svg path {
  fill: #197EAE;
}

#file-list-component-container {
  width: 100%;
}

.file-list-component ul.file-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  width: 100%;
}
.file-list-component .file-item {
  font-size: 1.2rem;
  border: 2px solid #ddd;
  border-radius: 1em;
  padding: 0.3em 0.7em;
  background: #fff;
  transition: border 0.2s;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.file-list-component .file-item:focus {
  outline: none;
  border-color: #2196f3;
  background: #D6ECF8;
}
.file-list-component .file-item-left {
  display: flex;
  align-items: center;
  gap: 0.7em;
  flex: 1 1 auto;
  min-width: 0;
}
.file-list-component .file-delete-btn {
  margin-left: 0.5em;
  flex-shrink: 0;
}
.file-list-component .file-thumb {
  width: 2.2em;
  height: 2.2em;
  object-fit: cover;
  margin-right: 0.3em;
  vertical-align: middle;
  border-radius: 0.2em;
  background: #f3f3f3;
  display: inline-block;
  flex-shrink: 0;
}
.file-list-component .file-item a {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
  margin-right: 0.5em;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-list-component .file-item button {
  background: none;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
  color: #888;
  margin-left: 0.2em;
  transition: color 0.2s;
  width: 44px;
  height: 44px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 51%;
}
.file-list-component .file-item button:hover {
  border-color: red;
}
.file-list-component .file-item button:hover svg path {
  fill: red;
}
.file-list-component .file-add {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}
.file-list-component .file-add button {
  background-color: #000;
  color: #fff;
  padding: 12px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  border: 1px solid #000;
  transition: all 0.3s ease;
}
.file-list-component .file-add button:hover {
  color: #000;
  background-color: #fff;
}
.file-list-component .file-add button:hover svg path {
  fill: #000;
}

.file-preview-modal {
  width: 80vw;
  max-width: 900px;
  min-width: 320px;
  min-height: 200px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.file-preview-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 1.5em 0.5em 1.5em;
  font-size: 1.1em;
  font-weight: 600;
  background: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}

.file-preview-close {
  font-size: 1.5em;
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  margin-left: 1em;
}

.file-preview-iframe {
  width: 100%;
  height: 80vh;
  border: none;
  background: #fff;
}

#file-preview-modal,
dialog#file-preview-modal {
  width: 80vw;
  height: 80vh;
  max-width: 900px;
  max-height: 90vh;
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 0;
  overflow: hidden;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

#file-preview-modal .file-preview-title {
  font-weight: bold;
  font-size: 1.1em;
  color: #222;
}

#file-preview-modal .file-preview-iframe {
  width: 100%;
  height: 90%;
  border: none;
  background: #fafafa;
  margin-top: 1em;
  flex: 1 1 auto;
}

#file-preview-modal button#close-preview-modal {
  background: none;
  border: none;
  color: #c00;
  font-size: 1.5em;
  cursor: pointer;
  margin-left: 1em;
  margin-right: 0;
  align-self: flex-end;
  padding: 0 0.5em;
}

#file-preview-modal > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#file-preview-modal > div > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.5em 0.5em 1.5em;
  border-bottom: 1px solid #eee;
  background: #f7f7f7;
}

dialog {
  border: 0;
  border-radius: 16px;
  padding: 4rem;
  max-width: 1000px;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
}
dialog h2 {
  margin: 0 0 2.5rem;
  font-size: 30px;
  font-weight: bold;
  font-style: italic;
  text-align: center;
}
dialog .close-dialog-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
dialog .close-dialog-btn:hover svg path {
  fill: #197EAE;
}
dialog .plugin-options {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
dialog .plugin-options button {
  cursor: pointer;
  border: 1px solid #bbb;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  padding: 2.5rem 0 0;
  width: 20%;
  background-color: #fff;
  transition: all 0.3s ease;
}
dialog .plugin-options button:hover {
  background-color: #D6ECF8;
  border-color: #197EAE;
}
dialog .plugin-options button:hover .text .title {
  color: #197EAE;
}
dialog .plugin-options button svg {
  flex-shrink: 0;
}
dialog .plugin-options button .text {
  text-align: left;
  margin-top: auto;
  padding: 2.5rem 1.5rem 2rem;
  margin-top: 0;
}
dialog .plugin-options button .text .title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 0.85rem;
  color: #000;
}
dialog .plugin-options button .text p {
  font-size: 16px;
  color: #777;
  margin: 0;
}

.open-question-form {
  background: #fff;
  border-radius: 16px;
  min-height: 300px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.open-question-form .statement-input {
  font-size: 2em;
  font-weight: 700;
  font-style: italic;
  border: 2px solid #d4d4d4;
  border-radius: 1em;
  padding: 0.3em 0.7em;
  margin-bottom: 0;
  background: #fff;
  color: #000;
  box-sizing: border-box;
  transition: all 0.2s;
}

.open-question-form .statement-input:focus,
input:focus,
textarea:focus {
  outline: none;
  border-color: #197EAE;
  background: #D6ECF8;
}

input::placeholder,
textarea::placeholder {
  color: black;
}

.plugin-label {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0;
  gap: 0.5em;
}

.quiz-form {
  background: #f1f1f1;
  border-radius: 20px;
  padding: 1.5rem 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin-top: 1.5rem;
}

.quiz-form label {
  display: none;
}

.quiz-form .statement-input {
  font-size: 2em;
  font-weight: 700;
  font-style: italic;
  border: 2px solid #ddd;
  border-radius: 1em;
  padding: 0.3em 0.7em;
  background: #fff;
  transition: border 0.2s;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.quiz-form .statement-input:focus {
  outline: none;
  border-color: #2196f3;
  background: #D6ECF8;
}

.quiz-answers-row {
  display: flex;
  gap: 2em;
  margin-bottom: 1.2em;
}

.quiz-answer {
  display: flex;
  align-items: stretch;
  flex: 1 1 0;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #ddd;
  padding: 0.5rem;
  font-size: 1.2em;
  font-weight: 500;
  gap: 1em;
  position: relative;
  overflow: hidden;
}
.quiz-answer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0 0.85rem;
  color: #000;
  background: #d4d4d4;
  flex-shrink: 0;
  border-radius: 12px;
}
.quiz-answer input {
  border: none;
  background: transparent;
  font-size: 1.1em;
  font-weight: 500;
  width: 100%;
  outline: none;
  padding: 0.2em 0;
  width: 100%;
  border: 0;
}

.quiz-answer.correct .quiz-answer-badge {
  background: #2ecc40;
}

.quiz-answer.incorrect .quiz-answer-badge {
  background: #e53935;
}

.quiz-answer input {
  border: none;
  background: transparent;
  font-size: 1.1em;
  font-weight: 500;
  width: 100%;
  outline: none;
  padding: 0.2em 0;
}

/* Textarea para pregunta y respuestas en quiz */
.statement-input,
.answer-input {
  resize: none;
  min-height: 3em;
  max-height: 6em;
  overflow-y: auto;
  font-family: inherit;
  font-size: 1em;
  line-height: 1.2;
  padding: 1rem;
}

.contact-info-editor-header {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 1em;
}

.contact-info-editor-header .icon {
  font-size: 1.3em;
  margin-right: 0.5em;
}

.contact-info-files-title {
  width: 100%;
  margin-bottom: 1rem;
  font-size: 2em;
  font-weight: 700;
  font-style: italic;
}

.contact-info-fields,
.contact-info-files {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 2em;
  padding: 1.5rem 2rem;
  background-color: #f1f1f1;
  margin-bottom: 1.5em;
  border-radius: 16px;
}

.contact-info-fields label {
  display: flex;
  flex-direction: column;
  font-size: 1.1em;
  font-weight: 600;
  gap: 0.3em;
  flex: 1 1 220px;
}

.contact-info-fields input {
  font-size: 2em;
  font-weight: 700;
  font-style: italic;
  border: 2px solid #ddd;
  border-radius: 1em;
  padding: 0.3em 0.7em;
  background: #fff;
  transition: border 0.2s;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.contact-info-fields input:focus {
  outline: none;
  border-color: #2196f3;
  background: #D6ECF8;
}

.contact-info-files {
  margin-top: 1rem;
}

.cover-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cover-form .cover-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}
.cover-form .cover-header p {
  width: 100%;
  font-weight: 400;
  margin-bottom: 0;
}
.cover-form .cover-image-section {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  background-color: #f1f1f1;
  padding: 1.5rem 1.2rem;
  border-radius: 16px;
}
.cover-form .cover-image-preview-container {
  width: 230px;
  min-height: 120px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.5rem;
}
.cover-form .cover-image-preview-container .cover-image-preview {
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.cover-form .cover-image-controls {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.cover-form .cover-image-controls .cover-default-images {
  width: 100%;
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.cover-form .cover-image-controls .cover-default-images .cover-default-thumb {
  width: calc(14.2857142857% - 1.5rem);
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.cover-form .cover-image-controls .cover-default-images .cover-default-thumb:hover {
  border-color: #197EAE;
}
.cover-form .cover-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #f1f1f1;
  padding: 1.5rem 1.2rem;
  border-radius: 16px;
}
.cover-form .cover-fields .idiomas {
  display: flex;
  align-items: center;
  flex-direction: row;
  font-size: 1.1rem;
  gap: 1rem;
  margin-top: 1rem;
}
.cover-form .cover-fields label {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  gap: 0.25rem;
}
.cover-form .cover-title,
.cover-form .cover-subtitle {
  font-size: 2em;
  font-weight: 700;
  font-style: italic;
  border: 2px solid #d4d4d4;
  border-radius: 20px;
  padding: 0.5rem 0.7em;
  margin-bottom: 0;
  background: #fff;
  color: #000;
  transition: all 0.2s;
  text-transform: none;
}
.cover-form .cover-title:focus,
.cover-form .cover-subtitle:focus {
  outline: none;
  border-color: #197EAE;
  background: #D6ECF8;
}
.cover-form .select-wrapper {
  position: relative;
  border: 1px solid black;
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px;
}
.cover-form .select-wrapper .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-form .select-wrapper .icon svg {
  width: 16px;
  height: 16px;
}
.cover-form .select-wrapper select {
  appearance: none;
  font-weight: bold;
  font-family: inherit;
  cursor: pointer;
  text-transform: uppercase;
  width: 48px;
  border: 0;
  font-size: 18px;
  padding: 0.5rem;
}

.modal {
  max-width: calc(100% - 300px);
}
.modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
}
.modal .modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.modal .modal-content .page-option {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 15%;
}
.modal .modal-title {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 74px;
  width: 100%;
}
.modal .modal-body p {
  text-align: center;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.285px;
}
.modal .modal-body .session-title {
  font-weight: bold;
  font-style: italic;
}
.modal .modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.modal .modal-footer .btn-confirm-delete:hover svg path {
  fill: #197EAE;
  stroke: #197EAE;
}

.index-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 150px);
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.index-page .main-content {
  background: #f5f5f5;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
  max-width: 600px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}
.index-page .main-content .login-form, .index-page .main-content .register-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.index-page .main-content .login-form input, .index-page .main-content .register-form input {
  font-size: 1.5em;
  font-weight: 500;
  border: 1px solid #d4d4d4;
  border-radius: 1em;
  padding: 0.3em 0.7em;
  margin-bottom: 0;
  background: #fff;
  color: #000;
  box-sizing: border-box;
  transition: all 0.2s;
}
.index-page .main-content .login-form input:focus, .index-page .main-content .register-form input:focus {
  outline: none;
  border-color: #197EAE;
  background: #D6ECF8;
}
.index-page .main-content .register-option {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-page {
  background: #f5f5f5;
  font-family: "Inter", Arial, sans-serif;
}

.dashboard-layout {
  display: flex;
  max-width: 100%;
  padding: 2rem 0;
}

.dashboard-sidebar {
  width: 260px;
  min-width: 200px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1rem 0 2rem;
}

.new-presentation-btn {
  background: #2a7ae4;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background 0.2s;
}

.new-presentation-btn:hover {
  background: #1760b0;
}

.dashboard-main {
  flex: 1;
  padding: 0 2rem 2rem 2rem;
}

.dashboard-tabs {
  display: flex;
  gap: 1rem;
}

.tab {
  background: #fff;
  border: none;
  border-radius: 16px 16px 0 0;
  color: #309FDC;
  text-align: center;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 30px;
  cursor: pointer;
  padding: 1rem;
  transition: all 0.2s, color 0.2s;
}
.tab:hover {
  background-color: #309FDC;
  color: #fff;
}
.tab.active {
  background: #eaf6ff;
  border-radius: 16px 16px 0 0;
}
.tab.active:hover {
  background-color: #309FDC;
  color: #fff;
}

.presentation-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 2.5rem;
  background: #fff;
  transition: box-shadow 0.2s;
}

.presentation-card:first-child {
  border-radius: 16px 16px 0 0;
}

.presentation-card:hover {
  box-shadow: 0 2px 12px rgba(42, 122, 228, 0.08);
}

.presentation-info {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex: 1;
  justify-content: space-between;
  align-items: center;
}

.presentation-title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.presentation-author {
  font-size: 0.98rem;
  color: #444;
}

.presentation-date {
  font-size: 0.98rem;
  color: #888;
  margin-left: 2rem;
  min-width: 200px;
}

.presentation-actions {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  transition: background 0.2s;
  border: 2px solid #222;
}
.icon-btn.trash:hover {
  border-color: red;
}
.icon-btn.trash:hover svg path {
  fill: red;
}
.icon-btn.edit:hover {
  border-color: #1760b0;
}
.icon-btn.edit:hover svg path {
  fill: #1760b0;
}
.icon-btn.play {
  background: #1760b0;
  border: 1px solid #1760b0;
}
.icon-btn.play:hover {
  background: white;
}
.icon-btn.play:hover svg path {
  fill: #1760b0;
}

.edit-header {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  align-items: center;
}
.edit-header .edit-header-left {
  display: flex;
  align-items: center;
}
.edit-header .edit-header-left .session-title {
  font-weight: bold;
  font-style: italic;
  font-size: 1.5rem;
  padding: 0.5rem;
  margin-right: 0.5rem;
}
.edit-header .edit-header-left .session-title:focus-visible {
  outline-color: #197EAE;
}
.edit-header .edit-header-left button {
  cursor: pointer;
}
.edit-header .edit-header-right {
  display: flex;
  align-items: center;
}
.edit-header #saving-indicator {
  color: #197EAE;
}

.edit-layout {
  display: flex;
  flex-direction: row;
  min-width: 0;
  height: 100%;
  padding-right: 1rem;
  min-height: calc(100vh - 113px - 128px);
}

.edit-main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-x: auto;
  border-radius: 16px 16px 0 0;
  background-color: #fff;
}

.editor-container {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
  justify-content: flex-start;
}

.page-item-actions {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  justify-content: flex-end;
}

/* Mantener los estilos de quiz y survey aislados como antes... */
.icon-qr {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><rect width="24" height="24" fill="white"/><rect x="2" y="2" width="6" height="6" fill="black"/><rect x="16" y="2" width="6" height="6" fill="black"/><rect x="2" y="16" width="6" height="6" fill="black"/><rect x="10" y="10" width="2" height="2" fill="black"/><rect x="14" y="14" width="2" height="2" fill="black"/><rect x="10" y="14" width="2" height="2" fill="black"/><rect x="14" y="10" width="2" height="2" fill="black"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.page-list-item.drag-locked {
  opacity: 0.6;
  cursor: not-allowed;
}

.page-list-item.dragging {
  opacity: 0.4;
}

.page-list-item.drop-target {
  outline: 2px dashed #2a7ae4;
  background: #eaf3ff;
}

.page-list-item[draggable=true] {
  cursor: grab;
}

.page-list-item.dragging {
  cursor: grabbing !important;
}

.pin-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  margin-top: 3em;
}
.pin-form__label {
  font-size: 1.2em;
}
.pin-form__input {
  font-size: 1.2em;
  padding: 0.3em 0.6em;
  width: 8em;
  text-align: center;
}
.pin-form__button {
  font-size: 1.1em;
  padding: 0.3em 1.2em;
}

.wellcome-container {
  background: url("../../assets/bg-portada.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 99px - 15px);
}
.wellcome-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(221deg, rgba(255, 255, 255, 0) -23.65%, rgba(0, 0, 0, 0.7) 58.41%);
}
.wellcome-container main {
  background-color: #fff;
  position: relative;
  z-index: 9;
  width: calc(100% - 8rem);
  height: calc(100% - 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 0px 0px;
  position: relative;
}
.wellcome-container main .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("../../assets/bg-texts.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  padding: 0 6rem;
}
.wellcome-container main .text h1 {
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 74px;
  margin: 0;
}
.wellcome-container main .text p {
  width: 90%;
  max-width: 800px;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.285px;
  margin: 1rem 0 2rem;
}
.wellcome-container main .text .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wellcome-container main .text .btn span {
  display: flex;
  align-items: center;
}
.wellcome-container main .wellcome-access {
  align-self: flex-start;
  padding-left: 36px;
  margin-top: 64px;
}
@media screen and (min-height: 800px) {
  .wellcome-container main .wellcome-access {
    position: absolute;
    bottom: 48px;
    left: 64px;
    padding-left: 0;
  }
}
.wellcome-container main .wellcome-access-label {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.wellcome-container main .wellcome-access-btns {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 1rem;
  margin-top: 1rem;
}
.wellcome-container main .wellcome-access-btns .btn {
  background-color: #fff;
  color: #000;
}
.wellcome-container main .wellcome-access-btns .btn:hover {
  background-color: #000;
  color: #fff;
}

#loginForm, #pin-form {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#loginForm input, #pin-form input {
  font-size: 1.5em;
  font-weight: 500;
  border: 1px solid #d4d4d4;
  border-radius: 1em;
  padding: 0.3em 0.7em;
  margin-bottom: 0;
  background: #fff;
  color: #000;
  box-sizing: border-box;
  transition: all 0.2s;
  margin-bottom: 2rem;
}
#loginForm input:focus, #pin-form input:focus {
  outline: none;
  border-color: #197EAE;
  background: #D6ECF8;
}

.survey-form {
  background: #f3f3f3;
  border-radius: 20px;
  padding: 2em 1.5em 2.5em 1.5em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin-top: 1.5rem;
}

.survey-form label {
  display: none;
}

.survey-form .statement-input {
  font-size: 2em;
  font-weight: 700;
  font-style: italic;
  border: 2px solid #ddd;
  border-radius: 1em;
  padding: 0.3em 0.7em;
  background: #fff;
  transition: border 0.2s;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.survey-form .statement-input:focus {
  outline: none;
  border-color: #2196f3;
  background: #D6ECF8;
}

.survey-form .statement-input:focus {
  outline: none;
  border-color: #2196f3;
  background: #D6ECF8;
}

.survey-answers-row {
  display: flex;
  gap: 2em;
  margin-bottom: 1.2em;
}

.survey-answer {
  display: flex;
  align-items: stretch;
  flex: 1 1 0;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #ddd;
  padding: 0.5rem;
  font-size: 1.2em;
  font-weight: 500;
  gap: 1em;
  position: relative;
  overflow: hidden;
}
.survey-answer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0 0.85rem;
  color: #000;
  background: #d4d4d4;
  flex-shrink: 0;
  border-radius: 12px;
}
.survey-answer input {
  border: none;
  background: transparent;
  font-size: 1.1em;
  font-weight: 500;
  width: 100%;
  outline: none;
  padding: 0.2em 0;
  width: 100%;
  border: 0;
}

/* Textarea para pregunta y respuestas en survey */
.statement-input,
.answer-input {
  resize: none;
  min-height: 3em;
  max-height: 6em;
  overflow-y: auto;
  font-family: inherit;
  font-size: 1.5rem;
  line-height: 1.2;
  width: 100%;
  border: 0;
}

.word-cloud-form {
  margin: 3rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.word-cloud-form label {
  display: none;
}

.word-cloud-form .statement-input {
  font-size: 2em;
  font-weight: 700;
  font-style: italic;
  border: 2px solid #ddd;
  border-radius: 1em;
  padding: 0.3em 0.7em;
  margin-bottom: 1.5em;
  background: #fff;
  transition: border 0.2s;
  width: 100%;
}

.word-cloud-form .statement-input:focus {
  outline: none;
  border-color: #2196f3;
  background: #fff;
}

.word-cloud-form .word-cloud-header {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 1em;
}

.word-cloud-form .word-cloud-header .icon {
  font-size: 1.3em;
  margin-right: 0.5em;
}

/* NUEVO: estilos del runtime de asistentes */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 16px;
}
html.attendee-context .only-presenter,
body.attendee-context .only-presenter {
  display: none !important;
}

.stage {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.main-header {
  padding: 0;
}
.main-header #pinLabel {
  display: none;
}
.main-header .nav-logo {
  font-size: 2rem;
}
@media screen and (max-width: 900px) {
  .main-header .nav-logo {
    font-size: 1.8rem;
  }
}

/* escenario centrado */
.presenter-context .nav-logo {
  flex-grow: 1;
}
.presenter-context .only-attendee {
  display: none !important;
}
.presenter-context #pinLabel {
  display: block;
  color: #197EAE;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid #197EAE;
  background: #DAECF3;
  padding: 0.5rem 0.85rem;
  margin-right: 2.5rem;
}
.presenter-context .open-question {
  align-items: center;
  justify-content: center;
}
.presenter-context .open-question__statement {
  text-align: center;
}
.presenter-context .quiz--locked .quiz__answer {
  flex-direction: column;
  padding-bottom: 0;
  border-radius: 0;
}
.presenter-context .quiz--locked .quiz__answer .quiz__answer_badge {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: auto;
  background-color: transparent;
  color: #fff;
  height: auto;
}
.presenter-context #host {
  background-image: url("../assets/bg-host.png");
  background-repeat: no-repeat;
  background-position: left top;
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

word-cloud-page {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#host {
  background-color: #fff;
  max-width: calc(100% - 16rem);
  margin: 0 auto;
  padding: 1.1rem 3.5rem 4rem;
  border-radius: 16px 16px 0px 0px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  gap: 1rem;
  margin-top: -24px;
  position: relative;
  z-index: 3;
  width: 100%;
  box-sizing: border-box;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
@media screen and (max-width: 900px) {
  #host {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1.8rem;
    margin-top: -16px;
  }
}
#host h2 {
  font-size: clamp(24px, 2vw + 0.5rem, 40px);
  margin: 0 0 1.8rem;
  font-weight: 700;
  line-height: 114.202%;
  letter-spacing: 0.267px;
  width: 100%;
}

.plugin-name {
  color: #000;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 38px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .plugin-name {
    display: none;
  }
}

.icon-play,
.ico-play {
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.qr-modal[style*="display: flex"] {
  display: flex !important;
}

.qr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.qr-modal__content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 2rem 2.5rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  min-height: 220px;
}

.qr-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}

.qr-modal__close:hover {
  color: #c00;
}

.qr-container {
  display: flex;
  justify-content: center;
  margin: 1em 0;
}

/* Oculta la interfaz de presenter (footer y pinLabel) cuando main tiene la clase hideInterface */
main.hideInterface #footer,
main.hideInterface #pinLabel {
  display: none !important;
}

/* Oculta la interfaz de presenter (footer y pinLabel) cuando main tiene la clase hideInterface */
main.hideInterface ~ footer,
main.hideInterface ~ #pinLabel,
main.hideInterface + footer,
main.hideInterface + #pinLabel,
body main.hideInterface ~ footer,
body main.hideInterface ~ #pinLabel {
  display: none !important;
}

/* Mostrar botón y contador de resultados solo si main.hasresults */
#btnShow {
  display: none;
}

body main.hasresults ~ footer #btnShow {
  display: inline-block !important;
}

.waiting-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 10000;
  font: 18px/1.4 system-ui;
}
.waiting-overlay.is-hidden {
  display: none;
}

header {
  background-color: #ffffff;
  padding: 0;
  box-shadow: 0px 10px 20.2px 0px rgba(0, 0, 0, 0.25);
  padding-right: 2rem;
}
header .main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
header .main-nav a,
header .main-nav span {
  font-size: 2.3rem;
  font-weight: bold;
  font-style: italic;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
}
header .main-nav a:before,
header .main-nav span:before {
  content: "";
  width: 56px;
  height: 71px;
  background-image: url(../assets/bg-logo-header.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  header .main-nav a:before,
  header .main-nav span:before {
    width: 36px;
    height: 48px;
  }
}

.main-footer {
  margin-top: auto;
  background-color: #000;
}
.main-footer .footer-content {
  padding: 0.5rem 1rem;
}
.main-footer .footer-content span {
  color: #fff;
  font-size: 0.8rem;
}

.edit-sidebar {
  width: 200px;
  min-width: 160px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1rem 4rem 2rem;
  gap: 1.5rem;
  height: 100%;
  position: sticky;
  top: 50px;
  max-height: calc(100vh - 200px);
  overflow-y: scroll;
  overflow-x: visible;
  scrollbar-width: thin;
  scrollbar-color: #bbb transparent;
}
.edit-sidebar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.edit-sidebar::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 10px;
}
.edit-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.edit-sidebar .btn {
  width: 100%;
}
.edit-sidebar .page-list {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.edit-sidebar .page-list li {
  height: 100px;
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  background-image: url(../assets/cover.svg);
  background-position: 85% 16px;
  background-repeat: no-repeat;
  background-size: 28px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
.edit-sidebar .page-list li:hover {
  border-color: #197EAE;
  transform: translateY(4px);
}
.edit-sidebar .page-list li .page-item-number {
  width: 32px;
  height: 32px;
  background-color: #000;
  color: #fff;
  font-size: 1rem;
  border-radius: 51%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -16px;
}
.edit-sidebar .page-list li.active {
  border-color: #5CD0FF;
}
.edit-sidebar .page-list li.active .page-item-number {
  background-color: #5CD0FF;
  color: #000;
}
.edit-sidebar .page-list li[data-plugin-type=quiz] {
  background-image: url(../assets/quiz.png);
}
.edit-sidebar .page-list li[data-plugin-type=contact-info] {
  background-image: url(../assets/contact-info.png);
}
.edit-sidebar .page-list li[data-plugin-type=survey] {
  background-image: url(../assets/survey.png);
}
.edit-sidebar .page-list li[data-plugin-type=word-cloud] {
  background-image: url(../assets/word-cloud.png);
}
.edit-sidebar .page-list li[data-plugin-type=open-question] {
  background-image: url(../assets/open-question.png);
}
.edit-sidebar .page-item-actions {
  position: absolute;
  bottom: 8px;
  right: 8px;
}
.edit-sidebar .icon-btn.delete-page-btn,
.edit-sidebar .icon-btn.copy-link-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  border: 1.5px solid #000;
  padding: 0;
  background-color: #000;
}
.edit-sidebar .icon-btn.delete-page-btn.icon-btn.delete-page-btn,
.edit-sidebar .icon-btn.copy-link-btn.icon-btn.delete-page-btn {
  background-color: #E30613;
  border-color: #E30613;
}
.edit-sidebar .icon-btn.delete-page-btn.icon-btn.delete-page-btn:hover,
.edit-sidebar .icon-btn.copy-link-btn.icon-btn.delete-page-btn:hover {
  background-color: transparent;
}
.edit-sidebar .icon-btn.delete-page-btn.icon-btn.delete-page-btn:hover svg path,
.edit-sidebar .icon-btn.copy-link-btn.icon-btn.delete-page-btn:hover svg path {
  fill: #E30613;
}
.edit-sidebar .icon-btn.delete-page-btn:hover,
.edit-sidebar .icon-btn.copy-link-btn:hover {
  background-color: transparent;
}
.edit-sidebar .icon-btn.delete-page-btn:hover svg path,
.edit-sidebar .icon-btn.copy-link-btn:hover svg path {
  fill: #000;
}

.cover-banner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .cover-banner {
    flex-direction: column;
    align-items: stretch;
  }
}

.cover-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.cover-banner-bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(221deg, rgba(255, 255, 255, 0) -23.65%, rgba(0, 0, 0, 0.7) 58.41%);
}

.cover-banner-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: calc(100% - 16rem);
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .cover-banner-content {
    padding: 2rem 1.2rem;
    max-width: 100%;
  }
}

.cover-banner-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
}
@media screen and (max-width: 900px) {
  .cover-banner-title {
    font-size: 1rem;
  }
}

.cover-banner-subtitle {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  display: none;
}
@media screen and (max-width: 900px) {
  .cover-banner-subtitle {
    font-size: 1rem;
  }
}

#cover-banner-host {
  width: 100%;
}

.attendee-context .cover-banner-bg .cover-banner-content {
  min-height: unset;
}

footer.nav {
  width: 100%;
  padding: 1rem 0;
  position: fixed;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  max-width: calc(100% - 20rem);
  margin: 0 auto;
  z-index: 5;
  background-color: #fff;
  border-radius: 24px 24px 0 0;
}
footer.nav .group-left {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
footer.nav .group-left .badge {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 1rem;
  font-weight: 700;
}
footer.nav .group-left .badge span {
  line-height: 20px;
}

.nav button {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid #000;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.nav button:hover {
  border-color: #197EAE;
  background-color: #197EAE;
  color: #fff;
}
.nav button:hover svg path {
  fill: #fff;
}
.nav button#btnShow {
  border-color: #197EAE;
  background-color: #197EAE;
  color: #fff;
}
.nav button#btnShow:hover {
  color: #197EAE;
  background-color: #fff;
}

#btnShowQr .icon-play {
  margin-right: 0.8rem;
}

#btnBack {
  background-color: #000;
  color: #fff;
  gap: 0.5rem;
}
#btnBack:hover {
  background-color: #fff;
  border-color: #000;
  color: #000;
}
#btnBack:hover svg path {
  fill: #000;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.navigation button {
  border-color: #000;
  padding: 0;
  background-color: #fff;
  transform: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation button svg path {
  fill: #000;
}
.navigation button:hover {
  background-color: #000;
  border-color: #000;
}
.navigation button:hover svg path {
  fill: #fff;
}

.nav #btnShow:disabled {
  border-color: #C2C2C2;
  background: #F5F5F5;
  color: #C2C2C2;
  cursor: not-allowed;
}

/* plugins de runtime */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-sizing: border-box;
  gap: 2rem;
}
.contact-info__presenter, .contact-info__attendee {
  width: 100%;
}
.contact-info__presenter .contact-info__thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  line-height: 1em;
  max-width: 750px;
  font-weight: bold;
  text-align: center;
  padding: 2rem 1rem;
  margin: 0 auto;
  position: relative;
  background: url("../assets/bg-texts.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 5rem;
}
body[data-presenter=true] .contact-info__attendee {
  display: none;
}
body:not([data-presenter=true]) .contact-info__presenter {
  display: none;
}
.contact-info__text {
  text-align: center;
  font-size: 64px;
  font-weight: 700;
  line-height: 114.202%;
  letter-spacing: 0.57px;
}
.contact-info__btn {
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: #fff;
  border: none;
  border-radius: 2em;
  padding: 0.8em 1.6em;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 0.7em;
}
.contact-info__btn:hover, .contact-info__btn:focus {
  background: #0d4170;
}
.contact-info__btn .icon-pdf,
.contact-info__btn .icon-contact {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.4em;
  background-repeat: no-repeat;
  background-size: contain;
}
.contact-info__btn .icon-pdf {
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" ...></svg>');
}
.contact-info__btn .icon-contact {
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" ...></svg>');
}
.contact-info__attendee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
}
.contact-info__attendee .contact-info__text {
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  line-height: 114.202%;
  letter-spacing: 0.57px;
  margin: 0;
}
.contact-info__attendee p {
  font-style: italic;
  text-align: center;
}

.contact-info__files {
  list-style: none;
  padding: 0;
  margin: 1.2em 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
}

.contact-info__files li {
  margin: 0;
}

.contact-info__files a {
  color: #155fa0;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
  word-break: break-all;
}

.contact-info__files a:hover,
.contact-info__files a:focus {
  color: #0d4170;
  text-decoration: underline;
}

.contact-info__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7em;
  width: 100%;
  margin: 0;
}
.contact-info__buttons h3 {
  color: #197EAE;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  margin: 0 0 1.5rem;
}

.contact-info__btn--info {
  color: #fff;
  border: 1px solid #197EAE;
  margin-bottom: 0.5em;
  background-color: #197EAE;
  font-weight: bold;
  font-size: 18px;
  width: 100%;
}
.contact-info__btn--info:hover, .contact-info__btn--info:focus {
  background: #155fa0;
  color: #fff;
  border-color: #155fa0;
}

.contact-info__btn--download {
  background: #fff;
  color: #197EAE;
  border: 1px solid #197EAE;
  margin-bottom: 0.5em;
  font-weight: bold;
  font-size: 18px;
  text-align: left;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
@media screen and (max-width: 900px) {
  .contact-info__btn--download {
    max-width: 350px;
  }
}
.contact-info__btn--download:hover, .contact-info__btn--download:focus {
  background: #197EAE;
  color: #fff;
}
.contact-info__btn--download:hover:hover .icon, .contact-info__btn--download:focus:hover .icon {
  background-image: url(../assets/ico-link-hover.svg);
}

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.4em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.icon.icon-info {
  background-image: url(../assets/ico-arrow-right.svg);
}
.icon.icon-download {
  background-image: url(../assets/ico-link.svg);
}

.open-question__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  width: 100%;
}

.open-question {
  background-color: #fff;
  max-width: calc(100% - 16rem);
  margin: 0 auto;
  padding: 3rem 2.5rem;
  border-radius: 16px 16px 0px 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 900px) {
  .open-question {
    flex-direction: column;
    max-width: 100%;
    padding: 0;
  }
}
.open-question__input {
  min-height: 3.5em;
  resize: vertical;
  padding: 0.8em 1em;
  border-radius: 16px;
  border: 1px solid #000;
  font-size: 1rem;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  box-shadow: none;
  font-family: "Open Sans", sans-serif;
}
.open-question__input:focus {
  outline: none;
  border-color: #197EAE;
  background: #D6ECF8;
}
.open-question__submit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  background-color: #197EAE;
  border-color: #197EAE;
}
.open-question__submit:hover {
  background-color: #fff;
  color: #197EAE;
}
.open-question__submit:hover svg path {
  fill: #197EAE;
}
.open-question__submit .icon-play {
  display: flex;
  align-items: center;
}
.open-question__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.open-question__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  font-size: clamp(16px, 2vw + 0.5rem, 24px);
  margin-top: 0;
}
.open-question__list .open-question__item {
  background: #fff;
  border: 1px solid #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2em;
  width: 100%;
  border-radius: 31px;
  padding: 0.5rem 1rem;
  position: relative;
  color: #000;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 38px;
}
.open-question__list .open-question__item.its-me {
  color: #197EAE;
  border-color: #197EAE;
  background-color: #DAECF3;
}
.open-question__list .open-question__item .question-actions {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  flex-shrink: 0;
  min-width: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.open-question__list .open-question__item .question-actions .like-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.2em 0.5em;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition), opacity var(--transition);
}
.open-question__list .open-question__item .question-actions .like-btn .likes-count {
  font-size: 16px;
  color: #000;
}
.open-question__list .open-question__item .question-actions .like-btn:disabled {
  opacity: 1;
  cursor: not-allowed;
}
.open-question__list .open-question__item .question-actions .like-btn:focus {
  outline: 2px solid var(--like);
  background: #fffbe6;
}
.open-question__list .open-question__item .question-actions .like-btn.liked-by-me svg, .open-question__list .open-question__item .question-actions .like-btn.liked-by-me path {
  fill: #197EAE;
  color: #197EAE;
  stroke: #197EAE;
}
.open-question__list .open-question__item-text {
  flex-grow: 1;
}
.open-question__list .open-question__item .question-text {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
}
.open-question__list .open-question-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* ---------- Feedback (mensaje de éxito) ---------- */
.open-question__feedback {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  color: var(--success);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.5em;
  transition: opacity var(--transition), max-height var(--transition);
  text-align: left;
}

.open-question__feedback--visible {
  opacity: 1;
  max-height: 4em;
}

/* ---------- Botón secundario (ver todas) ---------- */
.open-question__view-all {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 0.7em;
  padding: 0.6em 1.2em;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.open-question__view-all:hover,
.open-question__view-all:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.open-question__list .open-question__text {
  flex: 1 1 auto;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
  word-break: break-word;
}

/* ---------- Botón de like ---------- */
/* ---------- Modal ---------- */
.open-question__modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--modal-bg);
  transition: opacity var(--transition);
  opacity: 1;
}

.open-question__modal[aria-hidden=true] {
  opacity: 0;
  pointer-events: none;
}

.open-question__modal-content {
  background: #fff;
  border-radius: 1.2em;
  padding: 2.2em 2.5em 2em 2.5em;
  box-shadow: 0 4px 32px rgba(30, 41, 59, 0.13);
  max-width: 95vw;
  width: 420px;
  text-align: center;
  position: relative;
}

.open-question__modal-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.1em;
}

.open-question__modal-close {
  position: absolute;
  top: 1.1em;
  right: 1.1em;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #bdbdbd;
  cursor: pointer;
  transition: color var(--transition);
}

.open-question__modal-close:hover,
.open-question__modal-close:focus {
  color: var(--danger);
  outline: none;
}

/* ---------- Accesibilidad y detalles ---------- */
.open-question__input:disabled,
.open-question__submit:disabled,
.open-question__like-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* --- estilos para el <dialog> --- */
.open-question__modal {
  /* tamaño y posición */
  width: 60vw;
  max-width: 600px;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  position: relative;
  /* centra vertical y horizontal */
  top: 30vh;
  left: 50vw;
  transform: translate(-50%, -50%);
}

/* backdrop oscuro */
.open-question__modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

/* texto dentro del modal */
.open-question__modal-text {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* contador de likes */
.open-question__modal-likes {
  font-size: 1rem;
  color: #333;
}

/* botón de cerrar como “X” */
.open-question__modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}
.open-question__modal-close:hover {
  color: #000;
}

/* 1) Texto de la pregunta más grande */
.open-question__modal-text {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* 2) Ancho dinámico, sin salirse de la pantalla */
.open-question__modal {
  width: auto;
  max-width: 90vw;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
}

/* 🌑 oscurecer el fondo detrás del <dialog> */
.open-question__modal::backdrop {
  background-color: rgba(0, 0, 0, 0.6);
}

/* oscurecimiento del fondo */
.open-question__modal::backdrop {
  background-color: rgba(0, 0, 0, 0.6);
}

/* botón cerrar en esquina */
.open-question__modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #333;
  cursor: pointer;
  z-index: 1001;
}

.open-question {
  background-color: #fff;
  max-width: calc(100% - 16rem);
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  border-radius: 16px 16px 0px 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 900px) {
  .open-question {
    flex-direction: column;
    max-width: unset;
    padding: 0;
  }
}

.quiz,
.survey,
.survey-feedback-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.5rem 0 1.5rem 0;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .quiz,
  .survey,
  .survey-feedback-list {
    flex-direction: column;
    max-width: unset;
    padding: 0;
  }
}
.quiz .quiz__answer,
.survey .quiz__answer,
.survey-feedback-list .quiz__answer {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.quiz .quiz__answer,
.quiz .quiz__feedback,
.survey .quiz__answer,
.survey .quiz__feedback,
.survey-feedback-list .quiz__answer,
.survey-feedback-list .quiz__feedback {
  line-height: 1.2em;
  position: relative;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #ddd;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  font-size: 28px;
  font-weight: 500;
  min-height: 73px;
  gap: 1rem;
  width: calc(50% - 1rem);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
@media screen and (max-width: 900px) {
  .quiz .quiz__answer,
  .quiz .quiz__feedback,
  .survey .quiz__answer,
  .survey .quiz__feedback,
  .survey-feedback-list .quiz__answer,
  .survey-feedback-list .quiz__feedback {
    width: 100%;
    font-size: 1.2em;
  }
}
.quiz .quiz__answer_badge,
.quiz .quiz__feedback_badge,
.survey .quiz__answer_badge,
.survey .quiz__feedback_badge,
.survey-feedback-list .quiz__answer_badge,
.survey-feedback-list .quiz__feedback_badge {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0 0.85rem;
  color: #000;
  background: #d4d4d4;
  flex-shrink: 0;
  border-radius: 12px;
  height: 100%;
}
.quiz .quiz__answer .answer-text,
.quiz .quiz__feedback .answer-text,
.survey .quiz__answer .answer-text,
.survey .quiz__feedback .answer-text,
.survey-feedback-list .quiz__answer .answer-text,
.survey-feedback-list .quiz__feedback .answer-text {
  display: flex;
  align-items: center;
}
.quiz .quiz__answer--selected,
.quiz .quiz__feedback--selected,
.survey .quiz__answer--selected,
.survey .quiz__feedback--selected,
.survey-feedback-list .quiz__answer--selected,
.survey-feedback-list .quiz__feedback--selected {
  color: #197EAE;
  border-color: #197EAE;
  background-color: #DAECF3;
  font-weight: bold;
}
.quiz .quiz__answer--selected .quiz__answer_badge,
.quiz .quiz__feedback--selected .quiz__answer_badge,
.survey .quiz__answer--selected .quiz__answer_badge,
.survey .quiz__feedback--selected .quiz__answer_badge,
.survey-feedback-list .quiz__answer--selected .quiz__answer_badge,
.survey-feedback-list .quiz__feedback--selected .quiz__answer_badge {
  color: #fff;
  background: #197EAE;
}
.quiz .quiz__answer .quiz__feedback-icon,
.quiz .quiz__feedback .quiz__feedback-icon,
.survey .quiz__answer .quiz__feedback-icon,
.survey .quiz__feedback .quiz__feedback-icon,
.survey-feedback-list .quiz__answer .quiz__feedback-icon,
.survey-feedback-list .quiz__feedback .quiz__feedback-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0 0.85rem;
  color: #000;
  background: #d4d4d4;
  flex-shrink: 0;
  border-radius: 12px;
  height: inherit;
}
.quiz .quiz__answer .answer-selected,
.quiz .quiz__feedback .answer-selected,
.survey .quiz__answer .answer-selected,
.survey .quiz__feedback .answer-selected,
.survey-feedback-list .quiz__answer .answer-selected,
.survey-feedback-list .quiz__feedback .answer-selected {
  display: flex;
  justify-content: center;
  align-items: center;
}
.quiz .quiz__answer--stat,
.quiz .quiz__feedback--stat,
.survey .quiz__answer--stat,
.survey .quiz__feedback--stat,
.survey-feedback-list .quiz__answer--stat,
.survey-feedback-list .quiz__feedback--stat {
  border: 0;
  color: #DE453B;
  padding-bottom: 0;
  margin-bottom: 0;
}
.quiz .quiz__answer--stat .stat-group,
.quiz .quiz__feedback--stat .stat-group,
.survey .quiz__answer--stat .stat-group,
.survey .quiz__feedback--stat .stat-group,
.survey-feedback-list .quiz__answer--stat .stat-group,
.survey-feedback-list .quiz__feedback--stat .stat-group {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  background-color: #F5F5F5;
}
.quiz .quiz__answer--stat .stat-group .stat-background,
.quiz .quiz__feedback--stat .stat-group .stat-background,
.survey .quiz__answer--stat .stat-group .stat-background,
.survey .quiz__feedback--stat .stat-group .stat-background,
.survey-feedback-list .quiz__answer--stat .stat-group .stat-background,
.survey-feedback-list .quiz__feedback--stat .stat-group .stat-background {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transition: width 0.3s;
  pointer-events: none;
  border-radius: 0 0 48px 0;
  background: #DE453B;
  min-width: 120px !important;
}
.quiz .quiz__answer--stat .stat-group .count,
.quiz .quiz__feedback--stat .stat-group .count,
.survey .quiz__answer--stat .stat-group .count,
.survey .quiz__feedback--stat .stat-group .count,
.survey-feedback-list .quiz__answer--stat .stat-group .count,
.survey-feedback-list .quiz__feedback--stat .stat-group .count {
  position: relative;
  z-index: 8;
  padding-left: 60px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.quiz .quiz__answer--stat .quiz__answer_badge,
.quiz .quiz__feedback--stat .quiz__answer_badge,
.survey .quiz__answer--stat .quiz__answer_badge,
.survey .quiz__feedback--stat .quiz__answer_badge,
.survey-feedback-list .quiz__answer--stat .quiz__answer_badge,
.survey-feedback-list .quiz__feedback--stat .quiz__answer_badge {
  display: none;
}
.quiz .quiz__answer--stat.quiz__answer--correct,
.quiz .quiz__feedback--stat.quiz__answer--correct,
.survey .quiz__answer--stat.quiz__answer--correct,
.survey .quiz__feedback--stat.quiz__answer--correct,
.survey-feedback-list .quiz__answer--stat.quiz__answer--correct,
.survey-feedback-list .quiz__feedback--stat.quiz__answer--correct {
  border: 0;
  font-weight: 700;
  color: #000;
}
.quiz .quiz__answer--stat.quiz__answer--correct .stat-background,
.quiz .quiz__feedback--stat.quiz__answer--correct .stat-background,
.survey .quiz__answer--stat.quiz__answer--correct .stat-background,
.survey .quiz__feedback--stat.quiz__answer--correct .stat-background,
.survey-feedback-list .quiz__answer--stat.quiz__answer--correct .stat-background,
.survey-feedback-list .quiz__feedback--stat.quiz__answer--correct .stat-background {
  background: #3DB929;
}
.quiz .quiz__answer--stat.quiz__answer--correct .quiz__answer_badge, .quiz .quiz__answer--stat.quiz__answer--correct .count,
.quiz .quiz__feedback--stat.quiz__answer--correct .quiz__answer_badge,
.quiz .quiz__feedback--stat.quiz__answer--correct .count,
.survey .quiz__answer--stat.quiz__answer--correct .quiz__answer_badge,
.survey .quiz__answer--stat.quiz__answer--correct .count,
.survey .quiz__feedback--stat.quiz__answer--correct .quiz__answer_badge,
.survey .quiz__feedback--stat.quiz__answer--correct .count,
.survey-feedback-list .quiz__answer--stat.quiz__answer--correct .quiz__answer_badge,
.survey-feedback-list .quiz__answer--stat.quiz__answer--correct .count,
.survey-feedback-list .quiz__feedback--stat.quiz__answer--correct .quiz__answer_badge,
.survey-feedback-list .quiz__feedback--stat.quiz__answer--correct .count {
  color: #000;
}
.quiz.survey-feedback-list,
.survey.survey-feedback-list,
.survey-feedback-list.survey-feedback-list {
  padding: 0;
}

.quiz__question {
  margin-bottom: 2rem;
}

.quiz--locked .quiz__feedback--incorrect {
  border-color: #DE453B;
  color: #DE453B;
}
.quiz--locked .quiz__feedback--incorrect .quiz__feedback-icon {
  background-color: #DE453B;
}
.quiz--locked .quiz__feedback-selected {
  display: flex;
  align-items: center;
}
.quiz--locked .quiz__feedback--correct {
  border-color: #3DB929;
}
.quiz--locked .quiz__feedback--correct .quiz__feedback-icon {
  color: #000;
  background-color: #3DB929;
}

.survey__answer {
  line-height: 1.2em;
  position: relative;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #ddd;
  padding: 0.5rem;
  font-size: 1.2em;
  font-weight: 500;
  min-height: 73px;
  gap: 1em;
  width: calc(50% - 1rem);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  align-items: center;
  /* Cuando la opción tiene la clase --stat (resultados abiertos), muestra el badge */
}
@media screen and (max-width: 900px) {
  .survey__answer {
    width: 100%;
  }
}
.survey__answer_option {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0 0.85rem;
  color: #000;
  background: #d4d4d4;
  flex-shrink: 0;
  border-radius: 12px;
  height: inherit;
  min-height: 86px;
  height: 100%;
}
.survey__answer-pct {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.survey__answer .count {
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  background: #009688;
  color: white;
  border-radius: 999px;
  padding: 0 0.5em;
  font-size: 0.75em;
  z-index: 1;
}
.survey__answer.survey__option--selected {
  color: #197EAE;
  border-color: #197EAE;
  background-color: #DAECF3;
  font-weight: bold;
}
.survey__answer.survey__option--selected .survey__answer_option {
  color: #fff;
  background: #197EAE;
}
.survey__answer.survey__option--stat {
  cursor: default;
}
.survey__answer.survey__answer .count {
  display: none;
}
.survey__answer.survey__option--stat .count {
  display: inline-block;
}

.survey--locked .survey-feedback-flex {
  align-items: center;
  padding-top: 1rem;
}
.survey--locked .survey-feedback-flex .survey-feedback-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.survey--locked .survey-feedback-flex .survey-feedback-list .survey__answer {
  width: calc(50% - 1rem);
  padding: 1rem 2rem 1rem 0.5rem;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .survey--locked .survey-feedback-flex .survey-feedback-list .survey__answer {
    width: 100%;
  }
}
.survey--locked .survey-feedback-flex .survey-feedback-list .survey__answer_option {
  background-color: #fff;
}
.survey--locked .survey-feedback-flex .survey-feedback-list .survey__answer-text {
  flex-grow: 1;
  height: inherit;
  display: flex;
  align-items: center;
}
.survey--locked .survey-feedback-flex .survey-feedback-list .survey__answer.color-set-0 {
  background-color: #5CD0FF;
  color: #000;
}
.survey--locked .survey-feedback-flex .survey-feedback-list .survey__answer.color-set-1 {
  background-color: #197EAE;
  color: #fff;
}
.survey--locked .survey-feedback-flex .survey-feedback-list .survey__answer.color-set-2 {
  background-color: #DAECF3;
  color: #000;
}
.survey--locked .survey-feedback-flex .survey-feedback-list .survey__answer.color-set-3 {
  background-color: #FFCC00;
  color: #000;
}
@media screen and (max-width: 900px) {
  .survey--locked .survey-feedback-flex .survey-feedback-list {
    width: 100%;
  }
}
.survey--locked .survey-feedback-flex .survey-feedback-chart {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .survey--locked .survey-feedback-flex .survey-feedback-chart {
    display: none;
  }
}

.presenter-context .survey__answer {
  font-size: 28px;
}

.word-cloud {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 900px) {
  .word-cloud {
    margin-top: 2rem;
  }
}

.word-cloud__form {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.word-cloud__form .input-wrapper {
  display: flex;
  flex-direction: column;
}
.word-cloud__form .input-wrapper .word-cloud__char-counter {
  align-self: flex-end;
  font-size: 1rem;
  font-style: italic;
  margin-top: 1rem;
}
.word-cloud__form .input-wrapper input {
  font-size: 1.5em;
  font-weight: 500;
  border: 1px solid #d4d4d4;
  border-radius: 1em;
  padding: 0.3em 0.7em;
  margin-bottom: 0;
  background: #fff;
  color: #000;
  box-sizing: border-box;
  transition: all 0.2s;
}
.word-cloud__form .input-wrapper input:focus {
  outline: none;
  border-color: #197EAE;
  background: #D6ECF8;
}
.word-cloud__form .word-cloud__submit {
  align-self: flex-end;
  margin-top: 1.5rem;
}
.word-cloud__form .word-cloud__feedback {
  color: #3DB929;
}

.word-cloud__feedback {
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes wordCloudIn {
  0% {
    opacity: 0;
    transform: scale(0.2) translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(0, 0);
  }
}
body[data-presenter] {
  overflow: hidden !important;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  position: fixed;
  overscroll-behavior: none;
}

.cover-presenter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.cover-presenter .cover-banner-content {
  display: none;
}

.cover-bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  z-index: 1;
  display: flex;
  align-items: center;
}
.cover-bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(221deg, rgba(255, 255, 255, 0) -23.65%, rgba(0, 0, 0, 0.7) 58.41%);
}

.loader-container {
  width: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 1.5rem;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0 7% 6rem;
}
@media screen and (max-width: 900px) {
  .loader-container {
    justify-content: center;
  }
}
.loader-container .texts p {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 0;
}
@media screen and (max-width: 900px) {
  .loader-container .texts p {
    font-size: 16px;
  }
}
.loader-container .texts .counter {
  font-style: italic;
  font-weight: 400;
}
.loader-container svg {
  animation: spin 4s linear infinite;
  transform-origin: 50% 50%;
}

.cover-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 6rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  padding: 2rem 7% 0;
  flex-grow: 1;
}
@media screen and (max-width: 900px) {
  .cover-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 0 2rem;
  }
}

.cover-qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  width: 320px;
}

.cover-qr {
  border-radius: 24px;
  background: #fff;
  padding: 1.2rem;
  margin-bottom: 1rem;
  width: 320px;
  height: 320px;
}
.cover-qr img {
  width: 100%;
}
.cover-qr canvas {
  width: 280px !important;
  height: 280px !important;
}

.cover-qr-label {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 2.5rem;
}
.cover-qr-label b {
  font-weight: 700;
}

.cover-qr-url {
  max-width: 300px;
}
.cover-qr-url a {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  text-decoration-line: underline;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  .cover-qr-url a {
    font-size: 16px;
  }
}
.cover-qr-url a:hover {
  text-decoration-line: none;
}

.cover-qr-code {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  color: #fff;
}

.cover-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: none;
  border: none;
  box-shadow: none;
  width: calc(100% - 340px - 6rem);
}
@media screen and (max-width: 900px) {
  .cover-main {
    width: 100%;
  }
}

.cover-title {
  color: #FFF;
  font-size: 60px;
  font-style: italic;
  font-weight: 700;
  line-height: 114.202%;
  letter-spacing: 0.534px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 1rem;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .cover-title {
    font-size: 32px;
    text-align: center;
  }
}

.cover-subtitle {
  color: #FFF;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 114.202%;
  letter-spacing: 0.534px;
  margin: 0;
  margin-bottom: 2rem;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .cover-subtitle {
    font-size: 24px;
    text-align: center;
  }
}

.cover-start-btn {
  background-color: #FFF;
  color: #000;
}
.cover-start-btn .icon-play {
  display: flex;
  align-items: center;
}
.cover-start-btn:hover {
  background-color: #000;
  color: #fff;
}
.cover-start-btn:hover svg path {
  fill: #fff;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=styles.css.map */
