html, body, dialog {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0px;
}

*::-moz-selection {
  background-color: #545454 !important;
  color: #cccccc !important;
}

*::selection {
  background-color: #545454 !important;
  color: #cccccc !important;
}

body {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

button {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.centerAll {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.close {
  position: fixed;
  top: 10px !important;
  right: 10px !important;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  transform-origin: center center;
  transform: scale(1) rotate(0deg);
  background-color: transparent;
  font-size: 25px !important;
  z-index: 1000000;
}

.close:hover {
  background-color: transparent !important;
  font-weight: bolder !important;
  transition: transform 0.3s, background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s !important;
  transform: scale(1.2) rotate(90deg);
}

.close:not(:hover) {
  transform: scale(1) rotate(0deg);
}

.close:active {
  transform: scale(1.3) rotate(0deg);
}

*::after, *::before, *::backdrop {
  background-color: inherit;
}

*, *::after, *::before, *::backdrop {
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

iframe {
  border: none !important;
  outline: none !important;
}

.dark html, .dark body, .dark dialog {
  background-color: #212121;
}
.dark dialog::backdrop {
  background-color: #000;
  opacity: 0.45;
}
.dark .close:hover {
  color: #b4b4b4 !important;
}

.light html, .light body, .light dialog {
  background-color: #f9f9f9;
}
.light dialog::backdrop {
  background-color: #fff;
  opacity: 0.45;
}
.light .close:hover {
  color: #2f2f2f !important;
}/*# sourceMappingURL=Variables.css.map */