.cuit-minda-crossword {
  margin-bottom: 1.5rem;
  width: var(--block-width, var(--container-width));
  max-width: var(--block-max-width, var(--normal-container-max-width));
}

.cuit-minda-table-matrix {
  border: 1px solid #aaa;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
  width: 100%;
}

.cuit-minda-table-matrix .x-axis {
  border: 1px solid #aaa;
  position: relative;
  line-height: 2.5;
  width: 10%;
  padding: 0;
  display: table-cell;
  background: #222;
  color: #aaa;
}

.cuit-minda-table-matrix .y-axis {
  border: 1px solid #aaa;
  position: relative;
  line-height: 1;
  width: 10%;
  padding: 0;
  display: table-cell;
  background: #222;
  color: #aaa;
}

.cuit-minda-table-matrix .alphabet-cell {
  border: 1px solid #3b82f6;
  position: relative;
  line-height: 1;
  width: 10%;
  padding: 9% 0 0 0;
  /* background: #69dcff; */
  /* background: #38bdf8; */
  background: #93c5fd;
  display: table-cell;
}

.cuit-minda-table-matrix .hint-numbering {
  position: absolute;
  left: 5%;
  top: 5%;
  font-size: 0.7em;
  z-index: 1;
}

.cuit-minda-table-matrix .alphabet-display {
  font-size: 1em;
  font-weight: bold;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.cuit-minda-table-matrix .alphabet-input {
  font-size: 1em;
  font-weight: bold;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  background: #fff;
  border: 0;
}

.cuit-minda-action {
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
}

.cuit-minda-action button.hantar {
  background-color: #16a34a;
}

.cuit-minda-countdown-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */
  /* border-radius: 4px; */
  /* background-color: #0284c7; */
  /* background-color: #bae6fd; */
  /* color: #fff; */
  /* margin-top: 2rem; */
  margin-bottom: 2rem;
}

.cuit-minda-countdown-wrap > div {
  /* flex: 1; */
}

.cuit-minda-countdown-wrap .due-date {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8em;
  background-color: #222;
  color: #fff;
  padding: 5px 10px;
  border-radius: 40px;
  line-height: 1;
}

.cuit-minda-countdown-wrap .due-countdown {
  display: flex;
  justify-content: center;
  /* background-color: #7dd3fc; */
}

.cuit-minda-countdown-wrap .clock {
  text-align: center;
  width: 80px;
  /* padding: 0 1rem; */
}

.cuit-minda-countdown-wrap .clock-digit {
  font-size: 3rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.3;
}

.cuit-minda-countdown-wrap .clock-label {
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2ch;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cuit-minda-spinner {
  display: none;
  margin-left: 1rem;
}

.cuit-minda-spinner > svg {
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

button.processing .cuit-minda-spinner {
  display: inline-flex;
}

@media screen and (min-width: 1024px) {
  .cuit-minda-wrapper {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .cuit-minda-crossword {
    flex: 1;
  }

  .cuit-minda-hints {
    flex: 1;
  }
}

.cuit-minda-notice {
  padding: 5px 15px;
  background: #f6a931;
  margin-top: 25px;
}

.cuit-minda-notice p {
  margin-bottom: 0 !important;
  color: #444;
}
