*.pad01 {
  padding: 1em 0;
}

*.hidden {
  display: none !important;
}

*.unshow {
  opacity: 0 !important;
}

*[disabled]:not(.user-spec input):not(select),
.paginate_button.disabled a,
.col-el.error-api {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  background: repeating-linear-gradient(-45deg, var(--disabled-background-1), var(--disabled-background-1) 10px, var(--disabled-background-2) 10px, var(--disabled-background-2) 20px) !important;
}

*[data-value=init] {
  display: none !important;
}

@keyframes selected-pops-on-click {
  0% {
    scale: 1;
  }
  50% {
    scale: 0.9;
  }
}
@-webkit-keyframes selected-pops-on-click {
  0% {
    scale: 1;
  }
  50% {
    scale: 0.9;
  }
}
@keyframes fireGlow {
  0% {
    filter: blur(5px);
    opacity: 0.6;
  }
  100% {
    filter: blur(15px);
    opacity: 1;
  }
}
@media all and (min-width: 1000px) {
  main:has(.container-content-main) footer .wm-line .line-footer .line-footer {
    display: none !important;
  }
}

footer {
  --margin-app:1em;
  color: var(--text-color-priority-1);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  gap: 0.5em;
  width: 100%;
  padding: 2em 0;
  height: auto;
  background: var(--card-background);
  z-index: 1;
  border-top: 1px dashed var(--main-color-op);
}
@media (pointer: fine) {
  footer a:hover {
    text-decoration: underline;
  }
}
footer .wm-wrapper-footer {
  width: calc(100% - 2 * var(--margin-app));
}
footer .wm-line {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1em;
}
footer .wm-line:first-of-type {
  font-size: 1.4em;
  padding-bottom: 3em;
}
footer .wm-line:last-of-type {
  flex-direction: column;
  align-items: center;
}
@media all and (max-width: 630px) {
  footer .wm-line {
    flex-direction: column;
  }
}
@media all and (max-width: 500px) {
  footer .wm-line {
    flex-direction: column;
  }
  footer .wm-line .row-content {
    flex-direction: column !important;
    flex-wrap: wrap;
    width: 100%;
    align-content: flex-start !important;
  }
}
footer .wm-line .line-brand-name {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5em;
}
footer .wm-line .row-content {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  align-items: flex-start;
  gap: 1em;
  flex-wrap: wrap;
  font-size: 0.85em;
}
footer .wm-line .row-content .col-content {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
  flex: 1;
}
footer .wm-line .row-content .col-content a {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5em;
}
footer .wm-line .row-content .col-content a:has(svg) svg rect {
  stroke: var(--text-color-priority-1);
}
footer .wm-line .row-content .col-content a:has(svg) svg path {
  fill: var(--text-color-priority-1);
}
footer .wm-line .row-content .col-content p:first-of-type {
  white-space: nowrap;
  color: var(--text-color-priority-2);
  font-size: 0.8em;
}
footer .line-footer {
  width: 100%;
  margin-bottom: 1em;
  justify-content: space-between;
  flex-direction: row !important;
  flex-wrap: wrap;
}
@media all and (max-width: 500px) {
  footer .line-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 4em;
  }
}
footer .line-footer.separation {
  align-items: center;
  justify-content: space-between;
  padding-top: 1em;
  margin-top: 1em;
  border-top: 1px solid var(--border-color);
  font-size: 0.8em;
  color: var(--text-color-priority-2);
}
footer .line-footer.separation img {
  width: 1em;
  filter: invert(50%) sepia(0%) saturate(185%) hue-rotate(211deg) brightness(96%) contrast(83%);
}
footer .line-footer.separation .line-footer {
  width: fit-content;
  margin: 0;
  color: var(--text-color-priority-1);
}
@media all and (max-width: 500px) {
  footer .line-footer.separation .line-footer {
    flex-direction: row !important;
    width: 100%;
    justify-content: space-between !important;
    font-size: 1.4em;
    margin-top: 1em;
  }
}
footer .line-footer .selected i {
  scale: 1;
  transition: scale 0.3s ease;
  animation: 0.3s selected-pops-on-click;
}