*.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;
  }
}
.dialog-overlay {
  display: none;
  position: fixed;
  z-index: 88889;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  color: var(--text-color-priority-1);
}
.dialog-overlay .dialog-content {
  outline: 2px solid var(--button-background);
  outline-offset: 2px;
  --mwd: 50vw;
  width: var(--mwd);
  max-width: calc(var(--max-width-page) - 2em);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background: var(--card-background);
  padding: 1em;
  border-radius: var(--br);
  position: relative;
  animation: fadeIn 0.3s ease;
}
@media all and (max-width: 900px) {
  .dialog-overlay .dialog-content {
    --mwd:70vw;
  }
}
@media all and (max-width: 600px) {
  .dialog-overlay .dialog-content {
    --mwd:90vw;
  }
}
.dialog-overlay .dialog-content img {
  width: 100%;
  border-radius: var(--br);
}
.dialog-overlay .dialog-content .container-dialog {
  width: 100%;
}
.dialog-overlay .dialog-content .container-dialog form {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.dialog-overlay .dialog-content .container-dialog form .container {
  margin-top: 0;
}
.dialog-overlay .dialog-content .container-dialog form #resetInfo {
  color: #000;
  padding: 0.5em;
  border-radius: var(--br);
  margin-bottom: 1em;
}
.dialog-overlay .dialog-content .container-dialog form #resetInfo.success {
  background: var(--success);
  border: 1px solid var(--success-border);
}
.dialog-overlay .dialog-content .container-dialog form #resetInfo.error {
  background: var(--error-2);
  border: 1px solid var(--error-border);
}
.dialog-overlay .dialog-content .container-dialog form .line-el button.no-outline {
  background: none;
}
@media all and (min-width: 500px) {
  .dialog-overlay .dialog-content .container-dialog form .line-el {
    width: fit-content;
    margin-left: auto;
  }
}
@media all and (max-width: 500px) {
  .dialog-overlay .dialog-content .container-dialog form .line-el {
    flex-direction: column-reverse;
  }
  .dialog-overlay .dialog-content .container-dialog form .line-el button {
    justify-content: center;
    font-size: large;
  }
}
.dialog-overlay .dialog-content .container-dialog .log-form {
  display: flex !important;
  width: 100%;
}
.dialog-overlay .dialog-content .container-dialog .log-form a {
  margin-left: auto;
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}
.dialog-overlay .dialog-content .line-el {
  width: 100%;
}
.dialog-overlay .dialog-content .line-el button {
  width: 100%;
}
.dialog-overlay .dialog-content .line-el button[type=submit] {
  border: 1px solid var(--button-background);
}
.dialog-overlay .dialog-content .close-btn {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  cursor: pointer;
  border-radius: var(--brb);
  aspect-ratio: 1;
  width: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
@media (pointer: fine) {
  .dialog-overlay .dialog-content .close-btn:hover {
    background: var(--button-outline);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.dialog-overlay .bottom-line-btn {
  width: fit-content !important;
  margin-left: auto;
}
.dialog-overlay .bottom-line-btn button {
  width: fit-content;
  justify-content: center;
  margin-left: auto;
}
.dialog-overlay .bottom-line-btn button:not(.active) {
  background: none;
}
@media all and (max-width: 500px) {
  .dialog-overlay .bottom-line-btn button {
    width: 100% !important;
    font-size: large !important;
  }
}
@media all and (max-width: 450px) {
  .dialog-overlay .bottom-line-btn {
    flex-direction: column-reverse;
    margin-left: 0;
    width: 100% !important;
  }
  .dialog-overlay .bottom-line-btn button {
    width: 100%;
  }
}

#dialog-privacy {
  bottom: 0;
  left: 0;
  width: 100%;
  position: sticky;
  height: fit-content;
  background: none;
  justify-content: start;
}
#dialog-privacy .dialog-content {
  margin: 1em;
  border: 1px solid var(--border-color);
  color: var(--text-color-priority-1);
  max-width: var(--max-width-page-px);
}
#dialog-privacy .dialog-content h2 {
  margin-right: 1em;
}
#dialog-privacy .bottom-line-btn {
  width: fit-content;
  margin-left: auto;
}
#dialog-privacy .bottom-line-btn a {
  white-space: nowrap;
}
#dialog-privacy .bottom-line-btn button {
  justify-content: center;
}
@media all and (max-width: 450px) {
  #dialog-privacy .bottom-line-btn {
    flex-direction: column-reverse;
    margin-left: 0;
    width: 100%;
  }
  #dialog-privacy .bottom-line-btn a {
    width: 100%;
    text-align: center;
    overflow: hidden;
  }
}

#dialog-login .dialog-content {
  color: var(--text-color-priority-1);
}

#dialog-login-successful .dialog-content,
#dialog-successful-verified-email .dialog-content {
  max-width: var(--max-width-page-px);
  color: var(--text-color-priority-1);
  border: 1px solid var(--border-color);
}
#dialog-login-successful .dialog-content .line-el,
#dialog-successful-verified-email .dialog-content .line-el {
  display: flex;
  gap: 1em;
}
@media all and (max-width: 500px) {
  #dialog-login-successful .dialog-content .line-el,
  #dialog-successful-verified-email .dialog-content .line-el {
    align-items: flex-start;
  }
}
#dialog-login-successful .dialog-content .line-el p,
#dialog-successful-verified-email .dialog-content .line-el p {
  width: 100%;
}
#dialog-login-successful .dialog-content .line-el .number,
#dialog-successful-verified-email .dialog-content .line-el .number {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 2.5em;
  background: var(--main-color-op);
  aspect-ratio: 1;
  border-radius: var(--brb);
  aspect-ratio: 1;
}

#dialog-successful-verified-email .line-el {
  align-items: flex-start;
}
#dialog-successful-verified-email .line-el .number {
  color: #000;
  background: var(--success) !important;
}

#dialog-share-profile .dialog-content {
  width: fit-content !important;
  padding: 0;
  outline: none;
}
#dialog-share-profile .dialog-content .dialog-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  position: relative;
  border-radius: var(--br);
}
#dialog-share-profile .dialog-content .dialog-layer .container-dialog {
  position: absolute;
  bottom: 0;
  padding: 1em;
  width: 100%;
  translate: -50% 0;
  left: 50%;
}
#dialog-share-profile .dialog-content .dialog-layer .container-dialog:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  box-shadow: 0 0 100px 200px var(--card-specific);
}
#dialog-share-profile .dialog-content .dialog-layer .container-dialog .bottom-line-btn {
  z-index: 2;
  position: absolute;
  bottom: 0;
  padding: 1em;
  width: 100% !important;
  translate: -50% 0;
  left: 50%;
  flex-direction: column-reverse;
  margin-left: 0;
}
#dialog-share-profile .dialog-content .dialog-layer .container-dialog .bottom-line-btn button {
  width: 100%;
  color: #fff;
}
#dialog-share-profile .dialog-content .dialog-layer .container-dialog .bottom-line-btn button:not(.active) {
  border-color: var(--border-color-dark);
}
#dialog-share-profile .dialog-content .dialog-layer .container-dialog .bottom-line-btn button.active {
  border-color: var(--main-color);
}
#dialog-share-profile .dialog-content .dialog-layer .container-dialog .bottom-line-btn .comments {
  color: var(--text-color-priority-2);
}
#dialog-share-profile .dialog-content:before, #dialog-share-profile .dialog-content:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: var(--br);
  box-shadow: 0 0 0px 5px #fff;
  background: #fff;
  z-index: -1;
}
#dialog-share-profile .dialog-content:before {
  rotate: 1deg;
}
#dialog-share-profile .dialog-content:after {
  rotate: -2deg;
  background: var(--main-color);
}

.toggle_dark_mode .registration-result {
  background: var(--card-specific);
}

.registration-result {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  gap: 1em;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--success);
  color: var(--text-color-priority-1);
  z-index: 88889;
  scale: 0;
  overflow: hidden;
}
.registration-result.show-registration {
  animation: scaleContainer 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes scaleContainer {
  from {
    scale: 0;
    border-radius: var(--brb);
  }
  to {
    scale: 1;
    border-radius: 0;
  }
}
.registration-result::before, .registration-result::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 50%;
  background: var(--success-label-background);
  z-index: -1;
  border-radius: var(--brb);
  translate: 0 -50%;
}
.registration-result::after {
  bottom: 0;
  top: auto;
  translate: -50% 50%;
}
.registration-result .wrapper-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  gap: 1em;
  padding: 1em;
  width: 100%;
  max-width: 500px;
}
.registration-result .wrapper-animation .container-export {
  position: relative;
  border-radius: var(--br);
  background: var(--card-specific);
  border: 1px solid #2b2d30;
}
.registration-result .wrapper-animation .container-export::before, .registration-result .wrapper-animation .container-export::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--card-specific);
  border: 1px solid #2b2d30;
  z-index: -1;
  border-radius: var(--br);
  rotate: 4deg;
}
.registration-result .wrapper-animation .container-export::after {
  rotate: -4deg;
}
.registration-result .wrapper-animation .container-export canvas {
  height: 20vh;
  border-radius: var(--br);
  rotate: -2deg;
  position: relative;
  border: 1px solid #2b2d30;
}
.registration-result .wrapper-animation .container-export .result {
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 1em 0;
  width: 3em;
  aspect-ratio: 1;
  border: 2px solid var(--success-label-color);
  border-radius: var(--brb);
  background: var(--success-label-color);
  color: #fff;
  animation: scaleContainerIcon 0.8s ease forwards;
  animation-delay: 0.5s;
}
@keyframes scaleContainerIcon {
  0% {
    scale: 0.8;
  }
  80% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
.registration-result .wrapper-animation .container-export .result i {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  font-size: 1.3em;
}
.registration-result .line-el {
  padding: 1em;
  width: 100%;
  justify-content: center;
  flex-direction: column;
}
@media all and (max-width: 500px) {
  .registration-result .line-el button {
    width: 100%;
    justify-content: center !important;
    font-size: large !important;
  }
}
.registration-result .line-el button {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5em;
}
.registration-result .line-el button.active {
  background: var(--success-label-color) !important;
  border: 1px solid var(--success-label-color) !important;
}
.registration-result .line-el .export {
  background: transparent;
  border-color: var(--success-label-color);
}
.registration-result .line-el .export.nb {
  border: 0;
}