/* temp_stylePlugin:client/components/layout/App.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
body,
html {
  background-color: rgb(var(--background-color));
}
.cd {
  width: 100%;
  height: 100%;
  background-color: rgb(var(--background-color));
}
.cd-loading {
  width: 100vw;
  height: 100vh;
  background-color: rgb(var(--background-color));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: white;
  position: absolute;
  left: 0;
  top: 0;
}
.cd-topbar {
  position: fixed;
  z-index: 10000000000;
  left: 0;
  top: 0;
  width: 100%;
  height: 30px;
  -webkit-user-select: none;
  -webkit-app-region: drag;
}
.cd button {
  -webkit-app-region: no-drag;
}
.cd-module {
  background-color: rgb(var(--module-color));
  border-radius: 15px;
  padding: 13px;
  overflow: visible;
  box-sizing: border-box;
  width: 100%;
}
.cd-module--none {
  background-color: transparent;
}
.Toastify {
  z-index: 10000000;
}
.Toastify__toast {
  background-color: rgb(var(--module-color));
  z-index: 1000000000;
  border-radius: 8px;
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.1);
}
.Toastify__toast div {
  font-weight: 600 !important;
  color: white !important;
  font-size: 1rem;
}
.Toastify__toast-body {
  z-index: 99999999999;
  font-size: 0.9rem;
  position: relative;
  top: -2px;
}
.Toastify__toast--success {
  background-color: #2dbd61 !important;
}
.Toastify__toast--error {
  background-color: #e23343 !important;
}
.Toastify__toast--warning {
  background-color: #ee6a26 !important;
}
.app-html ::-webkit-scrollbar {
  width: 10px;
  background-color: transparent !important;
}
.app-html ::-webkit-scrollbar-track {
  background: rgba(var(--theme-background-opposite), 0.1);
}
.app-html ::-webkit-scrollbar-thumb {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  border-radius: 5px;
  background: rgba(var(--primary-color), 0.6);
}
.app-html ::-webkit-scrollbar-thumb:hover {
  background: rgb(var(--primary-color), 1);
}
.cd-table {
  width: 100%;
  border-collapse: separate;
  border: 1px solid rgb(var(--button-color));
  border-radius: 4px;
}
.cd-table td,
.cd-table th {
  border-left: 1px solid rgb(var(--button-color));
  border-top: 1px solid rgb(var(--button-color));
}
.cd-table td:first-child,
.cd-table th:first-child {
  border-left: none;
}
.cd-table th {
  border-top: none;
  font-weight: 600;
  font-size: 1rem;
  color: rgb(var(--text-color)) !important;
}
.cd-table td,
.cd-table th {
  padding: 7px 10px;
  text-align: left;
  box-sizing: border-box;
  color: rgb(var(--text-color));
  opacity: 0.9;
  font-size: 0.9rem;
}
.cd-table__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.cd-table__actions > * {
  margin-left: 7px;
}

/* temp_stylePlugin:client/components/layout/header_nav/HeaderNav.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-header-nav {
  background-color: rgb(var(--background-color));
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.cd-header-nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.cd-header-nav__left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cd-header-nav__left a {
  display: flex;
  align-items: center;
}
.cd-header-nav__cube-logo {
  color: rgb(var(--primary-color));
  filter: drop-shadow(0 2px 8px rgba(var(--primary-color), 0.3));
}
.cd-header-nav__center {
  display: flex;
  justify-content: center;
  flex: 1;
  margin: 0 20px;
}
.cd-header-nav__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cd-header-nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cd-header-nav__mobile {
  background-color: rgb(var(--background-color));
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.cd-header-nav__mobile-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 70px;
}
.cd-header-nav__mobile-left {
  display: flex;
  align-items: center;
}
.cd-header-nav__mobile-center {
  display: flex;
  justify-content: center;
  flex: 1;
}
.cd-header-nav__mobile-center a {
  display: flex;
  align-items: center;
}
.cd-header-nav__mobile-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cd-header-nav__mobile-menu {
  background-color: rgb(var(--background-color));
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  animation: slideDown 0.2s ease-out;
}
.cd-header-nav__mobile-menu-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cd-header-nav__mobile-menu-content a {
  padding: 12px 16px !important;
  justify-content: flex-start !important;
  border-radius: 12px;
  font-size: 16px;
  background: rgba(71, 85, 105, 0.6);
  color: rgb(226, 232, 240);
  border: 1px solid rgba(148, 163, 184, 0.3);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}
.cd-header-nav__mobile-menu-content a:hover {
  background: rgba(100, 116, 139, 0.8);
  color: rgb(248, 250, 252);
  border-color: rgba(148, 163, 184, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cubeFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes cubeRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1024px) {
  .cd-header-nav .cd-header-nav__center {
    margin: 0 16px;
  }
  .cd-header-nav .cd-header-nav__nav {
    gap: 6px;
  }
}
@media (max-width: 900px) {
  .cd-header-nav .cd-header-nav__nav {
    gap: 4px;
  }
  .cd-header-nav .cd-header-nav__nav a span:last-child {
    display: none;
  }
}
@media (max-width: 768px) {
  .cd-header-nav {
    display: block;
  }
}

/* temp_stylePlugin:client/components/layout/nav/notifications/Notifications.scss */
.cd-notifications {
  position: relative;
}
.cd-notifications__unread {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: rgb(var(--error-color));
  color: white;
  width: 15px;
  height: 15px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.67rem;
  z-index: 10000;
}
.cd-notifications__handle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: rgb(var(--text-color));
}
.cd-notifications__body {
  padding: 10px;
  box-sizing: border-box;
}
.cd-notifications__body > div:not(:last-child) {
  margin-bottom: 10px;
}
.cd-notifications__body--empty {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
  box-sizing: border-box;
}
.cd-notifications .cd-common__dropdown__body {
  width: 400px;
  max-height: none;
  height: 500px;
}

/* temp_stylePlugin:client/components/common/dropdown/OldDropdown.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common__dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cd-common__dropdown > button {
  padding: 0;
}
.cd-common__dropdown__body {
  position: absolute;
  right: 0;
  top: calc(100% + 5px);
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  padding: 5px;
  border-radius: 5px;
  box-sizing: border-box;
  min-width: 160px;
  box-shadow: 0 4px 13px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  z-index: 1000000;
  background-color: rgb(var(--button-color));
}
.cd-common__dropdown__body > *:not(:last-child) {
  margin-bottom: 6px;
}
.cd-common__dropdown__body > button,
.cd-common__dropdown__body > .cd-common__button__wrapper > button,
.cd-common__dropdown__body > a {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  color: rgb(var(--text-color));
  text-align: left !important;
  border-radius: 4px;
  justify-content: flex-start;
  padding: 8px;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all 0.1s ease-in-out;
  font-size: 1rem;
}
.cd-common__dropdown__body > button:disabled,
.cd-common__dropdown__body > .cd-common__button__wrapper > button:disabled,
.cd-common__dropdown__body > a:disabled {
  opacity: 0.4 !important;
  background-color: transparent !important;
  cursor: unset !important;
}
.cd-common__dropdown__body > button i,
.cd-common__dropdown__body > .cd-common__button__wrapper > button i,
.cd-common__dropdown__body > a i {
  opacity: 0.7;
  margin-right: 5px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cd-common__dropdown__body > button span,
.cd-common__dropdown__body > .cd-common__button__wrapper > button span,
.cd-common__dropdown__body > a span {
  display: table;
  color: inherit;
}
.cd-common__dropdown__body > button:hover,
.cd-common__dropdown__body > .cd-common__button__wrapper > button:hover,
.cd-common__dropdown__body > a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cd-common__dropdown__body--up {
  top: unset !important;
  bottom: calc(100% + 5px);
}
.cd-common__dropdown__body--left {
  right: unset;
  left: 0 !important;
}

/* temp_stylePlugin:client/components/common/old_button/Button.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common__button {
  background-color: rgb(var(--button-color));
  border-radius: 5px;
  color: rgb(var(--text-color));
  height: 32px;
  padding: 0 8px;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.cd-common__button:disabled {
  cursor: unset;
  opacity: 0.5;
}
.cd-common__button_confirm {
  display: table;
  margin-right: 4px;
}
.cd-common__button__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cd-common__button i {
  position: relative;
  top: 1px;
}
.cd-common__button span + i {
  margin-left: 8px;
}
.cd-common__button--small {
  font-size: 0.9rem;
  padding: 4px 6px;
}
.cd-common__button--white {
  background-color: rgb(var(--text-color));
  color: rgb(var(--background-color));
}
.cd-common__button__info {
  margin-top: 5px;
  color: rgb(var(--text-color));
  opacity: 0.8;
  font-size: 0.85rem !important;
}
.cd-common__button p {
  margin-top: 5px;
  opacity: 0.8;
  color: rgb(var(--text-color));
}
.cd-common__button span {
  display: table;
  color: inherit;
  font-size: 0.9rem;
  white-space: nowrap;
}
.cd-common__button--large {
  width: 100%;
  height: 37px;
}
.cd-common__button--round {
  border-radius: 15px;
}
.cd-common__button--green {
  background-color: rgb(var(--secondary-color)) !important;
  color: white !important;
}
.cd-common__button--orange {
  background-color: #ef6c00 !important;
  color: white !important;
}
.cd-common__button--red {
  background-color: #e53935 !important;
  color: white !important;
}
.cd-common__button--blue {
  background-color: rgb(var(--primary-color)) !important;
  color: white !important;
}
.cd-common__button--flat {
  border-bottom: 2px solid rgb(var(--text-color)) !important;
  background-color: transparent !important;
  padding: 2px 0 !important;
  border-radius: 0;
}

/* temp_stylePlugin:client/components/common/old_error/Error.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common__error {
  display: table;
  margin-top: 7px;
  font-size: 0.85rem;
  color: #e53935;
}

/* temp_stylePlugin:client/components/common/button/Button.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-button {
  border-radius: 4px;
  color: rgb(var(--text-color));
  font-family: "Source Sans Pro", sans-serif;
  height: 29px;
  padding: 0 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 400;
  box-sizing: border-box;
}
.cd-common-button > *:not(:last-child) {
  margin-right: 5px;
}
.cd-common-button--large {
  height: 42px;
  font-size: 1.05rem;
  padding: 0 15px;
}
.cd-common-button--small {
  font-size: 0.85rem;
  height: 25px;
  padding: 0 7px;
}
.cd-common-button:disabled,
.cd-common-button--disabled {
  cursor: unset;
  pointer-events: none;
  opacity: 0.6;
}
.cd-common-button_confirm {
  display: table;
  margin-right: 4px;
}
.cd-common-button__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cd-common-button__wrapper--fullWidth {
  width: 100% !important;
}
.cd-common-button--fullWidth {
  width: 100% !important;
}
.cd-common-button i {
  color: inherit;
  position: relative;
}
.cd-common-button__info {
  margin-top: 5px;
  color: rgb(var(--text-color));
  opacity: 0.8;
  font-size: 0.85rem !important;
}
.cd-common-button p {
  margin-top: 5px;
  opacity: 0.8;
  color: rgb(var(--text-color));
}
.cd-common-button span {
  display: table;
  color: inherit;
  white-space: nowrap;
  letter-spacing: 0.03rem;
  font: inherit;
}
.cd-common-button--noMargin {
  margin: 0 !important;
}
.cd-common-button--round {
  border-radius: 15px;
}
.cd-common-button--flat {
  box-shadow: none;
  background-color: transparent !important;
  padding: 0 !important;
  border-radius: 0;
  font-weight: 600;
  height: 24px;
}
.cd-common-button--flatBorder {
  border-bottom: 2px solid;
}
.cd-common-button--theme-transparent {
  background-color: transparent !important;
  color: rgb(var(--text-color));
}
.cd-common-button--theme-transparent.cd-common-button--glow {
  box-shadow: 0 2px 15px transparent !important;
}
.cd-common-button--theme-transparent.cd-common-button--flat {
  background-color: transparent !important;
  color: transparent;
}
.cd-common-button--theme-gray {
  background: linear-gradient(135deg, rgba(71, 85, 105, 0.8), rgba(100, 116, 139, 0.8)) !important;
  color: rgb(226, 232, 240) !important;
  border: 1px solid rgba(148, 163, 184, 0.3) !important;
  border-radius: 12px !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out !important;
  font-weight: 500 !important;
}
.cd-common-button--theme-gray:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.9), rgba(71, 85, 105, 0.9)) !important;
  color: rgb(248, 250, 252) !important;
  border-color: rgba(148, 163, 184, 0.5) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.cd-common-button--theme-gray:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.cd-common-button--theme-gray.cd-common-button--flat {
  background: transparent !important;
  color: rgb(226, 232, 240) !important;
  border: 1px solid rgba(148, 163, 184, 0.2) !important;
}
.cd-common-button--theme-white {
  background-color: rgb(var(--theme-background-opposite)) !important;
  color: rgb(var(--theme-background));
}
.cd-common-button--theme-white.cd-common-button--glow {
  box-shadow: 0 2px 15px rgb(var(--theme-background-opposite)) !important;
}
.cd-common-button--theme-white.cd-common-button--flat {
  background-color: transparent !important;
  color: rgb(var(--theme-background-opposite));
}
.cd-common-button--theme-primary {
  background-color: rgb(var(--primary-color)) !important;
  color: rgb(var(--theme-primary-opposite));
}
.cd-common-button--theme-primary.cd-common-button--glow {
  box-shadow: 0 2px 15px rgb(var(--primary-color)) !important;
}
.cd-common-button--theme-primary.cd-common-button--flat {
  background-color: transparent !important;
  color: rgb(var(--primary-color));
}
.cd-common-button--theme-danger {
  background-color: rgb(var(--error-color)) !important;
  color: white;
}
.cd-common-button--theme-danger.cd-common-button--glow {
  box-shadow: 0 2px 15px rgb(var(--error-color)) !important;
}
.cd-common-button--theme-danger.cd-common-button--flat {
  background-color: transparent !important;
  color: rgb(var(--error-color));
}
.cd-common-button--theme-secondary {
  background-color: rgb(var(--secondary-color)) !important;
  color: rgb(var(--theme-secondary-opposite));
}
.cd-common-button--theme-secondary.cd-common-button--glow {
  box-shadow: 0 2px 15px rgb(var(--secondary-color)) !important;
}
.cd-common-button--theme-secondary.cd-common-button--flat {
  background-color: transparent !important;
  color: rgb(var(--secondary-color));
}
.cd-common-button--theme-warning {
  background-color: rgb(var(--warning-color)) !important;
  color: white;
}
.cd-common-button--theme-warning.cd-common-button--glow {
  box-shadow: 0 2px 15px rgb(var(--warning-color)) !important;
}
.cd-common-button--theme-warning.cd-common-button--flat {
  background-color: transparent !important;
  color: rgb(var(--warning-color));
}

/* temp_stylePlugin:client/components/common/inputs/error/Error.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-error {
  display: table;
  font-size: 0.85rem;
  color: #e53935;
  font-family:
    "Lato",
    "Helvetica Neue",
    Helvetica,
    Roboto,
    Arial,
    sans-serif;
  margin-top: 5px;
}

/* temp_stylePlugin:client/components/common/inputs/input/input_info/InputInfo.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-info {
  opacity: 0.6;
  color: rgb(var(--text-color));
  display: table;
  font-family:
    "Lato",
    "Helvetica Neue",
    Helvetica,
    Roboto,
    Arial,
    sans-serif;
  font-size: 0.85rem;
}

/* temp_stylePlugin:client/components/common/modal/modal_header/ModalHeader.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-modal-header {
  width: calc(100% - 3rem);
  color: rgb(248, 250, 252);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.cd-modal-header h2 {
  color: inherit;
  font-family:
    Kontora,
    Poppins,
    Arial,
    "Helvetica Neue",
    Helvetica,
    sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.2;
}
.cd-modal-header h2 span {
  color: rgb(99, 102, 241);
}
.cd-modal-header p {
  color: rgb(148, 163, 184);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0.5rem 0 0 0;
  opacity: 0.9;
}

/* temp_stylePlugin:client/components/common/inputs/input/Input.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-generic-input {
  color: var(--theme-color-opposite);
}
.cd-common-generic-input input,
.cd-common-generic-input select,
.cd-common-generic-input textarea {
  background-color: rgb(var(--button-color)) !important;
  padding: 10px;
  color: rgb(var(--theme-button-opposite));
  border-radius: 5px !important;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
  border: none;
  transition: all 0.1s ease-in-out, height 0ms;
}
.cd-common-generic-input input:focus,
.cd-common-generic-input select:focus,
.cd-common-generic-input textarea:focus {
  border-color: rgb(var(--theme-button-opposite));
}
.cd-common-generic-input input:disabled,
.cd-common-generic-input select:disabled,
.cd-common-generic-input textarea:disabled {
  opacity: 0.6;
}
.cd-common-generic-input input::-moz-placeholder,
.cd-common-generic-input select::-moz-placeholder,
.cd-common-generic-input textarea::-moz-placeholder {
  color: rgb(var(--theme-button-opposite)) !important;
  opacity: 0.35;
}
.cd-common-generic-input input::placeholder,
.cd-common-generic-input select::placeholder,
.cd-common-generic-input textarea::placeholder {
  color: rgb(var(--theme-button-opposite)) !important;
  opacity: 0.35;
}
.cd-common-generic-input__header {
  margin-bottom: 5px;
}
.cd-common-generic-input__footer {
  margin-top: 4px;
}
.cd-common-generic-input--noMargin {
  margin-bottom: 0 !important;
}
.cd-common-generic-input--fullWidth {
  width: 100%;
}
.cd-common-input {
  position: relative;
  width: 100%;
}
.cd-common-input--resetbutton input {
  padding-right: 30px;
}
.cd-common-input > span {
  position: absolute;
  width: 30px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  margin-left: 3px;
  top: 1px;
}
.cd-common-input--icon {
  padding-left: 30px !important;
}
.cd-common-input-reset {
  right: 4px;
}
.cd-common-input input {
  background-color: rgb(var(--button-color)) !important;
  padding: 10px;
  color: rgb(var(--theme-button-opposite));
  border-radius: 5px !important;
  font-size: 0.95rem;
  box-sizing: border-box;
  border: none;
  transition: all 0.1s ease-in-out, height 0ms;
  width: 100%;
}
.cd-common-input input:focus {
  border-color: rgb(var(--theme-button-opposite));
}
.cd-common-input input:disabled {
  opacity: 0.6;
}
.cd-common-input input::-moz-placeholder {
  color: rgb(var(--theme-button-opposite)) !important;
  opacity: 0.35;
}
.cd-common-input input::placeholder {
  color: rgb(var(--theme-button-opposite)) !important;
  opacity: 0.35;
}

/* temp_stylePlugin:client/components/common/inputs/generic_input/GenericInput.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-generic-input {
  color: var(--theme-color-opposite);
}
.cd-common-generic-input input,
.cd-common-generic-input select,
.cd-common-generic-input textarea {
  background-color: rgb(var(--button-color)) !important;
  padding: 10px;
  color: rgb(var(--theme-button-opposite));
  border-radius: 5px !important;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
  border: none;
  transition: all 0.1s ease-in-out, height 0ms;
}
.cd-common-generic-input input:focus,
.cd-common-generic-input select:focus,
.cd-common-generic-input textarea:focus {
  border-color: rgb(var(--theme-button-opposite));
}
.cd-common-generic-input input:disabled,
.cd-common-generic-input select:disabled,
.cd-common-generic-input textarea:disabled {
  opacity: 0.6;
}
.cd-common-generic-input input::-moz-placeholder,
.cd-common-generic-input select::-moz-placeholder,
.cd-common-generic-input textarea::-moz-placeholder {
  color: rgb(var(--theme-button-opposite)) !important;
  opacity: 0.35;
}
.cd-common-generic-input input::placeholder,
.cd-common-generic-input select::placeholder,
.cd-common-generic-input textarea::placeholder {
  color: rgb(var(--theme-button-opposite)) !important;
  opacity: 0.35;
}
.cd-common-generic-input__header {
  margin-bottom: 5px;
}
.cd-common-generic-input__footer {
  margin-top: 4px;
}
.cd-common-generic-input--noMargin {
  margin-bottom: 0 !important;
}
.cd-common-generic-input--fullWidth {
  width: 100%;
}

/* temp_stylePlugin:client/components/common/inputs/input/input_legend/InputLegend.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-input-legend {
  color: rgb(var(--text-color));
  font-weight: 600;
  font-size: 0.95rem;
}
.cd-common-input-legend--large {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}
.cd-common-input-legend__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family:
    "Lato",
    "Helvetica Neue",
    Helvetica,
    Roboto,
    Arial,
    sans-serif;
}
.cd-common-input-legend__optional {
  font: inherit;
  font-weight: normal;
  font-size: 0.9rem;
  margin: 0 0 0 7px !important;
  font-style: italic;
  color: rgb(var(--text-color));
  opacity: 0.6;
  display: table;
  padding: 0 !important;
  position: relative;
}
.cd-common-input-legend i {
  color: inherit;
  margin-left: 5px;
}

/* temp_stylePlugin:client/components/common/inputs/generic_input/icon/Icon.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-icon {
  font-size: 0.9rem;
  color: rgb(var(--theme-button-opposite));
  opacity: 0.4;
}
.cd-common-icon--success {
  color: #66bb6a !important;
  opacity: 1;
}
.cd-common-icon--warning {
  color: #ef6c00 !important;
  opacity: 1;
}
.cd-common-icon--error {
  color: #e53935 !important;
  opacity: 1;
}

/* temp_stylePlugin:client/components/common/loading/Loading.scss */
.cd-common__loading {
  width: 100%;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cd-common__loading i {
  font-size: 1.3rem;
  color: rgb(var(--text-color));
}

/* temp_stylePlugin:client/components/common/empty/Empty.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-empty {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-empty img {
  margin-top: 30px;
  width: 90px;
  opacity: 0.4;
  height: auto;
}
.cd-empty p {
  margin-top: 15px;
  opacity: 0.6;
  color: rgb(var(--text-color));
  font-size: 0.9rem;
}

/* temp_stylePlugin:client/components/layout/nav/notifications/notif/Notif.scss */
.cd-notifications__notif {
  color: rgb(var(--text-color));
  width: 100%;
  background-color: rgba(var(--module-color), 0.5);
  padding: 10px 10px 15px 5px;
  box-sizing: border-box;
  border-radius: 5px;
  flex-direction: row;
  display: flex;
  align-items: center;
  position: relative;
}
.cd-notifications__notif--read {
  opacity: 0.6;
}
.cd-notifications__notif h5 {
  color: rgb(var(--text-color));
  opacity: 0.5;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cd-notifications__notif__left {
  height: 100%;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-notifications__notif__right {
  width: calc(100% - 50px);
}
.cd-notifications__notif__right button {
  color: rgb(var(--text-color));
  display: table;
  margin-top: 5px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgb(var(--text-color));
}
.cd-notifications__notif__right p {
  margin-bottom: 5px;
}
.cd-notifications__notif__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(var(--text-color));
  background-color: rgb(var(--module-color));
}
.cd-notifications__notif span {
  display: flex;
  font-size: 0.9rem;
  opacity: 0.5;
  color: rgb(var(--text-color));
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.cd-notifications__notif__actions {
  position: absolute;
  opacity: 0;
  top: 8px;
  right: 8px;
  display: flex;
  transition: opacity 0.1s ease-in-out;
  flex-direction: row;
}
.cd-notifications__notif__actions button {
  opacity: 0.8;
  border-radius: 0;
  padding: 0 0 1px;
  font-size: 0.8rem;
  margin-left: 7px;
  border-bottom: 1px solid white;
  color: rgb(var(--text-color));
}
.cd-notifications__notif__actions button:hover {
  background-color: transparent;
  opacity: 0.6;
}
.cd-notifications__notif:hover .cd-notifications__notif__actions {
  opacity: 1;
}

/* temp_stylePlugin:client/components/common/avatar/avatar_image/AvatarImage.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-avatar-image {
  position: relative;
}
.cd-avatar-image__body {
  position: relative;
  background-color: rgba(var(--text-color), 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.cd-avatar-image__body img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cd-avatar-image__body--tiny {
  width: 24px !important;
  height: 24px !important;
}
.cd-avatar-image__body--small {
  width: 30px !important;
  height: 30px !important;
}
.cd-avatar-image__body--large {
  width: 150px !important;
  height: 150px !important;
}

/* temp_stylePlugin:client/components/common/logo/Logo.scss */
.cd-logo {
  width: 27px;
  height: auto;
  opacity: 0.9;
}

/* temp_stylePlugin:client/components/layout/nav/account_dropdown/AccountDropdown.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}

/* temp_stylePlugin:client/components/common/inputs/dropdown/Dropdown.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cd-common-dropdown > button {
  padding: 0;
}
.cd-common-dropdown__custom-handle {
  width: 100%;
  display: table;
}
.cd-common-dropdown__body {
  position: absolute;
  right: 0;
  top: calc(100% + 5px);
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  padding: 8px;
  border-radius: 16px;
  box-sizing: border-box;
  min-width: 160px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  flex-direction: column;
  z-index: 1000000;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.95));
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.1);
}
.cd-common-dropdown__body > button,
.cd-common-dropdown__body > .cd-common-button__wrapper > button,
.cd-common-dropdown__body > a {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  color: rgb(226, 232, 240) !important;
  text-align: left !important;
  border-radius: 10px;
  justify-content: flex-start;
  padding: 10px 12px;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all 0.15s ease-in-out;
  font-size: 0.95rem;
  font-weight: 500;
  background-color: transparent;
  border: none;
}
.cd-common-dropdown__body > button:disabled,
.cd-common-dropdown__body > .cd-common-button__wrapper > button:disabled,
.cd-common-dropdown__body > a:disabled {
  opacity: 0.4 !important;
  background-color: transparent !important;
  cursor: unset !important;
}
.cd-common-dropdown__body > button i,
.cd-common-dropdown__body > .cd-common-button__wrapper > button i,
.cd-common-dropdown__body > a i {
  opacity: 0.8;
  margin-right: 8px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(148, 163, 184);
}
.cd-common-dropdown__body > button span,
.cd-common-dropdown__body > .cd-common-button__wrapper > button span,
.cd-common-dropdown__body > a span {
  display: table;
  color: inherit;
}
.cd-common-dropdown__body > button:hover:not(:disabled),
.cd-common-dropdown__body > .cd-common-button__wrapper > button:hover:not(:disabled),
.cd-common-dropdown__body > a:hover:not(:disabled) {
  background-color: rgba(99, 102, 241, 0.15) !important;
  color: rgb(248, 250, 252) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.cd-common-dropdown__body > button:active:not(:disabled),
.cd-common-dropdown__body > .cd-common-button__wrapper > button:active:not(:disabled),
.cd-common-dropdown__body > a:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.cd-common-dropdown__body--up {
  top: unset !important;
  bottom: calc(100% + 5px);
}
.cd-common-dropdown__body--left {
  right: unset;
  left: 0 !important;
}
.cd-common-dropdown__body--fullwidth {
  min-width: 100%;
}

/* temp_stylePlugin:client/components/common/inputs/dropdown/dropdown_option/DropdownOption.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-dropdown-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.cd-dropdown-option span {
  display: table;
}
.cd-dropdown-option--on {
  background-color: rgb(var(--text-color)) !important;
  color: rgb(var(--background-color)) !important;
}
.cd-dropdown-option:hover {
  background-color: rgb(var(--button-color));
}

/* temp_stylePlugin:client/components/common/checkbox/Checkbox.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-checkbox {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin: 7px 0;
  font-family:
    "Lato",
    "Helvetica Neue",
    Helvetica,
    Roboto,
    Arial,
    sans-serif;
}
.cd-common-checkbox label {
  color: rgb(var(--text-color));
  font-size: 0.95rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}
.cd-common-checkbox span {
  position: relative;
  margin-right: 6px;
  color: rgb(var(--text-color));
  font-size: 0.9rem;
  margin-top: -3px;
  width: calc(100% - 33px);
}
.cd-common-checkbox--noMargin {
  margin: 0 !important;
}
.cd-common-checkbox--noWrap label {
  white-space: pre;
}
.cd-common-checkbox input[type=checkbox] {
  padding: 0;
  position: absolute;
  opacity: 0;
}
.cd-common-checkbox input[type=checkbox] + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}
.cd-common-checkbox input[type=checkbox] + label:before {
  content: "";
  background-color: rgba(var(--theme-module-opposite), 0.1);
  margin-right: 8px;
  display: inline-block;
  vertical-align: text-top;
  width: 16px;
  height: 16px;
  border-radius: 3px;
}
.cd-common-checkbox input[type=checkbox]:hover + label:before {
  border: 2px solid rgba(var(--primary-color), 0.6);
}
.cd-common-checkbox input[type=checkbox]:checked + label:before {
  background: rgb(var(--primary-color));
}
.cd-common-checkbox input[type=checkbox]:disabled + label {
  cursor: default;
  opacity: 0.7 !important;
}
.cd-common-checkbox input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  left: 3px;
  zoom: 0.9;
  top: 9px;
  background: rgb(var(--text-color));
  width: 2px;
  height: 2px;
  box-shadow:
    2px 0 0 rgb(var(--text-color)),
    4px 0 0 rgb(var(--text-color)),
    4px -2px 0 rgb(var(--text-color)),
    4px -4px 0 rgb(var(--text-color)),
    4px -6px 0 rgb(var(--text-color)),
    4px -8px 0 rgb(var(--text-color));
  transform: rotate(45deg) translate(0, -50%);
}

/* temp_stylePlugin:client/components/layout/nav/Nav.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-nav {
  background-color: rgb(var(--module-color));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  box-sizing: border-box;
  width: 18rem;
  height: 100vh;
  z-index: 1000;
  top: 0;
  left: 0;
  position: sticky;
}
@supports (height: 100dvh) {
  .cd-nav {
    height: 100dvh;
  }
}
.cd-nav__bottom-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
  opacity: 0.7;
}
.cd-nav__social {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 95%;
  margin: 0 auto 10px;
  max-width: 200px;
  grid-gap: 5px;
  box-sizing: border-box;
}
.cd-nav__social a,
.cd-nav__social button {
  background-color: transparent;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  opacity: 0.7;
  transition: all 0.1s ease-in-out;
  padding: 8px;
  box-sizing: border-box;
}
.cd-nav__social a img,
.cd-nav__social button img {
  width: 100%;
}
.cd-nav__social a:hover,
.cd-nav__social button:hover {
  background-color: rgb(var(--theme-module-opposite), 0.1);
  opacity: 1;
}
.cd-nav--collapsed {
  width: 80px !important;
}
.cd-nav--collapsed ul li > a,
.cd-nav--collapsed ul li > button {
  justify-content: center;
}
.cd-nav--collapsed ul li span {
  display: none !important;
}
.cd-nav--collapsed .cd-nav__header {
  flex-direction: column;
  justify-content: center;
}
.cd-nav--collapsed .cd-nav__header > img:first-of-type {
  display: none;
}
.cd-nav--collapsed .cd-nav__header > img:nth-of-type(2) {
  display: unset !important;
}
.cd-nav--collapsed .cd-nav__header-actions {
  flex-direction: column;
}
.cd-nav--collapsed .cd-nav__header-actions > *:not(:last-child) {
  margin-right: 0;
  margin-bottom: 10px;
}
.cd-nav--collapsed .cd-nav__links {
  flex-direction: column;
}
.cd-nav--collapsed .cd-nav__links > *:not(:last-child) {
  margin-bottom: 10px;
}
.cd-nav--collapsed .cd-nav__social {
  grid-template-columns: 1fr;
}
.cd-nav__links {
  margin: 20px auto 0;
  width: 95%;
  max-width: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cd-nav__links--new {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.cd-nav__link--selected {
  opacity: 1 !important;
}
.cd-nav__header {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cd-nav__header > img:nth-of-type(2) {
  display: none;
}
.cd-nav__header > img:nth-of-type(1) {
  width: 120px !important;
}
.cd-nav__header-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cd-nav__header-actions > *:not(:last-child) {
  margin-right: 10px;
}
.cd-nav__pfp button {
  background: transparent;
}
.cd-nav__pfp .cd-avatar-image {
  zoom: 0.7;
}
.cd-nav__wrapper {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
}
.cd-nav__body {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cd-nav__top-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* temp_stylePlugin:client/components/layout/nav/mobile_nav/MobileNav.scss */
.cd-nav-mobile {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 55px;
  z-index: 100000;
  display: flex;
  justify-content: center;
}
.cd-nav-mobile__body {
  width: 100%;
  display: flex;
  padding: 0 13px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}
.cd-nav-mobile__body > div {
  width: 30%;
  position: relative;
  z-index: 100;
}
.cd-nav-mobile__links > li {
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  width: 100%;
}
.cd-nav-mobile__links > li > a {
  padding: 6px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.cd-nav-mobile__links > li i {
  font-size: 1.1rem;
  margin-right: 8px;
  opacity: 0.4;
  color: rgb(var(--text-color));
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cd-nav-mobile__links > li span {
  font-size: 1.1rem;
  color: rgb(var(--text-color));
}
.cd-nav-mobile__center {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.cd-nav-mobile__right {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
}
.cd-nav-mobile__right > * {
  margin-left: 10px;
}
.cd-nav-mobile__background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(var(--module-color));
  z-index: 0;
  top: 0;
  left: 0;
}

/* temp_stylePlugin:client/components/layout/wrapper/Wrapper.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-body {
  background-color: rgb(var(--background-color));
  min-height: 100vh;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cd-body__content {
  width: 100%;
  position: relative;
  flex: 1;
}
.cd-body:not(.cd-body--noPadding) > .cd-body__content {
  padding: 30px;
  box-sizing: border-box;
}

/* temp_stylePlugin:client/components/layout/loading_cover/LoadingCover.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-loading-cover {
  position: fixed;
  left: 0;
  z-index: 10000000;
  top: 0;
  width: 100vw;
  color: rgb(var(--text-color));
  background-color: rgb(var(--background-color));
  height: 100vh;
  display: flex;
  transition: background-color 0.1s ease-in-out, opacity 0.15s 0.4s ease-in-out;
  justify-content: center;
  align-items: center;
}
.cd-loading-cover i {
  font-size: 1.7rem;
  color: inherit;
}
.cd-loading-cover--fadeOut {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s 0.4s ease-in-out;
}

/* temp_stylePlugin:client/components/common/modal/Modal.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-modal {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: all 0.2s ease-in-out;
  z-index: 100000;
}
.cd-modal .cd-modal {
  z-index: 100000;
}
.cd-modal--active {
  opacity: 1;
}
.cd-modal--active .cd-modal__center {
  transform: translateY(0) scale(1);
}
.cd-modal-confirm {
  width: 100%;
}
.cd-modal-confirm p {
  color: rgb(var(--text-color));
  margin-bottom: 30px;
  line-height: 1.4rem;
  opacity: 0.9;
}
.cd-modal-confirm b {
  font-weight: bold;
  color: inherit;
}
.cd-modal-confirm a {
  display: inline;
  color: rgb(var(--primary-color));
}
.cd-modal-confirm input {
  width: 100% !important;
  max-width: none !important;
}
.cd-modal__description {
  font-size: 1rem;
  color: rgb(226, 232, 240);
  margin: 15px 0;
  opacity: 0.9;
  line-height: 1.4rem;
}
.cd-modal__center {
  width: 90%;
  max-width: 700px;
  overflow: visible;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.95));
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-in-out;
  position: relative;
  transform: translateY(20px) scale(0.95);
  box-sizing: border-box;
}
.cd-modal__close-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(71, 85, 105, 0.7);
  color: rgb(226, 232, 240);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
  z-index: 10000;
  font-size: 1.125rem;
}
.cd-modal__close-button:hover {
  background: rgba(100, 116, 139, 0.9);
  color: rgb(248, 250, 252);
  border-color: rgba(148, 163, 184, 0.5);
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.cd-modal__close-button:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.cd-modal--fullSize {
  width: 100% !important;
  max-width: unset !important;
  height: 100%;
}
.cd-modal--fullSize .cd-modal__center {
  max-width: none !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* temp_stylePlugin:client/components/layout/banned/Banned.scss */
.cd-banned {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  z-index: 100000000;
  justify-content: center;
  background-color: rgb(var(--background-color));
  align-items: center;
}
.cd-banned__body {
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
}
.cd-banned__body > i {
  color: rgb(var(--error-color));
  font-size: 2rem;
  margin-bottom: 15px;
}
.cd-banned__body p span {
  font-weight: 600;
  background-color: rgb(var(--module-color));
  border-radius: 4px;
  box-sizing: border-box;
  color: rgb(var(--error-color));
  padding: 4px;
}
.cd-banned__body p i {
  font-style: italic;
}
.cd-banned__body h4 {
  color: rgb(var(--text-color));
  margin: 5px 0 20px;
  font-size: 1.3rem;
}
.cd-banned__body a {
  color: rgb(var(--text-color));
  text-decoration: underline;
}
.cd-banned__body__reason {
  background-color: rgb(var(--module-color));
  padding: 15px;
  width: 100%;
  margin: 0 0 20px;
  border-radius: 10px;
  color: rgb(var(--text-color));
  box-sizing: border-box;
}
.cd-banned__body__reason > span {
  display: table;
  margin-bottom: 7px;
  color: rgb(var(--text-color));
  font-weight: 600;
}
.cd-banned__body__reason p {
  margin: 0;
}

/* temp_stylePlugin:client/components/layout/top_nav/TopNav.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-top-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  padding: 15px 0;
  box-sizing: border-box;
  background-color: rgb(var(--theme-primary));
  color: rgb(var(--text-color));
}
.cd-top-nav--white {
  background-color: white;
  color: #444 !important;
}
.cd-top-nav__logo img {
  width: 150px;
}
.cd-top-nav__body {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 95%;
  color: inherit;
  margin: auto;
  max-width: 1600px;
  justify-content: space-between;
}
.cd-top-nav__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: inherit;
}
.cd-top-nav__links > *:not(:last-child) {
  margin-right: 20px;
}

/* temp_stylePlugin:client/components/settings/modal/SettingsModal.scss */
.settings-content :global(.cd-button:not(.cd-button--primary):not(.cd-button--danger):not(.cd-button--warning)) {
  background-color: rgba(71, 85, 105, 0.8) !important;
  color: rgb(226, 232, 240) !important;
  border: 1px solid rgba(148, 163, 184, 0.4) !important;
}
.settings-content :global(.cd-button:not(.cd-button--primary):not(.cd-button--danger):not(.cd-button--warning)):hover {
  background-color: rgba(100, 116, 139, 0.9) !important;
  color: rgb(248, 250, 252) !important;
  border-color: rgba(148, 163, 184, 0.6) !important;
}
.settings-content :global(.cd-common-dropdown__button) {
  background-color: rgba(71, 85, 105, 0.8) !important;
  color: rgb(226, 232, 240) !important;
  border: 1px solid rgba(148, 163, 184, 0.4) !important;
}
.settings-content :global(.cd-common-dropdown__button):hover {
  background-color: rgba(100, 116, 139, 0.9) !important;
  color: rgb(248, 250, 252) !important;
}
.settings-content :global(.cd-common-switch__track) {
  background-color: rgba(71, 85, 105, 0.8) !important;
  border: 1px solid rgba(148, 163, 184, 0.4) !important;
}
.settings-content :global(.cd-common-switch__track):global(.cd-common-switch__track--on) {
  background-color: rgb(99, 102, 241) !important;
  border-color: rgb(99, 102, 241) !important;
}
.settings-content :global(.cd-common-switch__thumb) {
  background-color: rgb(248, 250, 252) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}
.settings-content :global(.cd-common-input input) {
  background-color: rgba(71, 85, 105, 0.8) !important;
  color: rgb(226, 232, 240) !important;
  border: 1px solid rgba(148, 163, 184, 0.4) !important;
}
.settings-content :global(.cd-common-input input):focus {
  background-color: rgba(100, 116, 139, 0.9) !important;
  border-color: rgb(99, 102, 241) !important;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2) !important;
}
.settings-content :global(.cd-common-input input)::-moz-placeholder {
  color: rgb(148, 163, 184) !important;
}
.settings-content :global(.cd-common-input input)::placeholder {
  color: rgb(148, 163, 184) !important;
}
.settings-content :global(.cd-common-slider input[type="range"]) {
  background: rgba(71, 85, 105, 0.6) !important;
  border: 1px solid rgba(148, 163, 184, 0.4) !important;
}
.settings-content :global(.cd-common-slider input[type="range"])::-webkit-slider-thumb {
  background: rgb(99, 102, 241) !important;
  border: 2px solid rgb(226, 232, 240) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}
.settings-content :global(.cd-common-slider input[type="range"])::-moz-range-thumb {
  background: rgb(99, 102, 241) !important;
  border: 2px solid rgb(226, 232, 240) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}
.settings-content :global(legend) {
  color: rgb(226, 232, 240) !important;
  font-weight: 500 !important;
}
.settings-content :global(p) {
  color: rgb(148, 163, 184) !important;
}
.settings-content :global(.cd-upload-cover) {
  background-color: rgba(71, 85, 105, 0.6) !important;
  border: 2px dashed rgba(148, 163, 184, 0.5) !important;
  color: rgb(226, 232, 240) !important;
}
.settings-content :global(.cd-upload-cover):hover {
  background-color: rgba(100, 116, 139, 0.7) !important;
  border-color: rgba(148, 163, 184, 0.7) !important;
}

/* temp_stylePlugin:client/components/settings/cube_types/CubeTypes.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-manage-custom-cubes__add {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.cd-manage-custom-cubes__table {
  margin-top: 10px;
}

/* temp_stylePlugin:client/components/settings/cube_types/cube_cube_type/NewCubeType.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}

/* temp_stylePlugin:client/components/settings/setting/row/SettingRow.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-setting-row {
  width: 100%;
  box-sizing: border-box;
  min-height: 40px;
  margin-top: 30px;
  padding-bottom: 30px;
  align-items: flex-start;
}
.cd-setting-row__wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.cd-setting-row__wrapper--vertical {
  flex-direction: column;
  justify-content: flex-start;
}
.cd-setting-row__wrapper--vertical .cd-setting-row__text {
  margin-bottom: 10px;
}
.cd-setting-row__wrapper--vertical .cd-setting-row__body,
.cd-setting-row__wrapper--vertical .cd-setting-row__text {
  width: 100%;
}
.cd-setting-row__text {
  box-sizing: border-box;
  display: table;
  text-align: left;
  width: 300px;
}
.cd-setting-row__text > legend {
  font-size: 1.2rem;
  color: rgb(var(--text-color));
}
.cd-setting-row--sub .cd-setting-row__text > legend {
  font-size: 1.1rem;
  font-weight: normal;
  line-height: 1.5rem;
  opacity: 0.9;
}
.cd-setting-row--parent {
  padding-bottom: 0 !important;
}
.cd-setting-row__body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cd-setting-row p {
  margin-top: 5px;
  font-size: 0.9rem;
  color: rgb(var(--text-color));
  opacity: 0.7;
  line-height: 1.3rem;
}
.cd-setting-row input {
  max-width: 100px;
}

/* temp_stylePlugin:client/components/common/switch/Switch.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-switch {
  background-color: rgb(var(--text-color), 0.15) !important;
  border-radius: 20px;
  position: relative;
  width: calc(25px * 2.4);
  height: calc(25px + 5px);
}
.cd-common-switch__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cd-common-switch span {
  position: absolute;
  display: table;
  height: 25px;
  width: 25px;
  background-color: white;
  border-radius: 50px;
  top: 50%;
  left: 4px;
  right: 0;
  transform: translate(0, -50%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.cd-common-switch--small {
  width: calc(15px * 2.6);
  height: calc(15px + 5px);
}
.cd-common-switch--small span {
  height: 15px;
  width: 15px;
}
.cd-common-switch--on {
  background-color: rgb(var(--primary-color)) !important;
}
.cd-common-switch--on span {
  right: 3px;
  left: unset;
}

/* temp_stylePlugin:client/components/settings/setting/section/SettingSection.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-setting-section > .cd-setting-row:not(:first-child) {
  padding-left: 20px;
}
.cd-setting-section > .cd-setting-section {
  border-bottom: 0;
}

/* temp_stylePlugin:client/components/common/slider/Slider.scss */
.cd-common__slider__slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 20px;
  background: rgb(var(--button-color));
  outline: none;
  transition: opacity 0.2s;
  border-radius: 10px;
}
.cd-common__slider__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgb(var(--text-color));
  cursor: pointer;
}

/* temp_stylePlugin:client/components/settings/appearance/layout_selector/LayoutSelector.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-settings-layout-selector {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cd-settings-layout-selector > * {
  margin-bottom: 15px;
}

/* temp_stylePlugin:client/components/settings/appearance/timer_background/TimerBackground.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-timer-background > input {
  display: none;
}
.cd-timer-background__image {
  width: 200px;
  height: 130px;
  border-radius: 7px;
  margin-bottom: 8px;
  position: relative;
  border: 3px solid rgba(var(--theme-background-opposite), 0.4);
  overflow: hidden;
  cursor: pointer;
}
.cd-timer-background__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* temp_stylePlugin:client/components/common/upload_cover/UploadCover.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-upload-cover {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.1s ease-in-out;
}
.cd-common-upload-cover:hover {
  opacity: 1 !important;
}
.cd-common-upload-cover:hover i {
  opacity: 1;
  top: 0;
}
.cd-common-upload-cover--loading {
  transition: unset !important;
  opacity: 1 !important;
}
.cd-common-upload-cover--loading i {
  transition: unset !important;
  opacity: 1 !important;
  top: 0 !important;
}
.cd-common-upload-cover__body {
  width: 100%;
  height: 100%;
}
.cd-common-upload-cover__body > div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cd-common-upload-cover i {
  color: white;
  font-size: 1.4rem;
  position: relative;
  top: 5px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

/* temp_stylePlugin:client/components/settings/appearance/theme_options/ThemeOptions.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-settings-theme-options__theme-controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cd-settings-theme-options__presets {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.cd-settings-theme-options__theme-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.cd-settings-theme-options__theme-actions .cd-button {
  min-width: 140px;
}
.cd-settings-theme-options__customize {
  display: grid;
  box-sizing: border-box;
  width: 100%;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.cd-settings-theme-options__customize > * {
  padding: 0 !important;
}
.cd-settings-theme-options__customize .cd-common-color-picker {
  margin-top: 5px;
  position: relative;
}
.cd-settings-theme-options__customize .cd-common-color-picker:nth-child(1) .cd-common-color-picker__palette {
  z-index: 1004;
}
.cd-settings-theme-options__customize .cd-common-color-picker:nth-child(2) .cd-common-color-picker__palette {
  z-index: 1003;
}
.cd-settings-theme-options__customize .cd-common-color-picker:nth-child(3) .cd-common-color-picker__palette {
  z-index: 1002;
}
.cd-settings-theme-options__customize .cd-common-color-picker:nth-child(4) .cd-common-color-picker__palette {
  z-index: 1001;
}
.cd-settings-theme-options__actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  padding: 15px;
  border-top: 1px solid rgba(var(--text-color), 0.1);
}
.cd-settings-theme-options__actions .cd-button {
  min-width: 180px;
}

/* temp_stylePlugin:client/components/common/color_picker/ColorPicker.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-color-picker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cd-common-color-picker__toggle {
  width: 100%;
  border: 4px solid rgb(var(--button-color), 0.9);
  background-color: rgb(var(--button-color), 0.4);
  border-radius: 5px;
  padding: 10px 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cd-common-color-picker__toggle > p {
  opacity: 1;
  color: rgb(var(--text-color));
  font-weight: bold;
  transition: all 0.1s ease-in-out;
  font-size: 1.1rem;
  margin: 0 !important;
}
.cd-common-color-picker__toggle:hover {
  background-color: rgba(var(--theme-background-opposite), 0.07);
}
.cd-common-color-picker__color {
  border: 2px solid rgb(var(--theme-background-opposite), 0.3);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
.cd-common-color-picker__palette {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 5px);
  right: 0;
  opacity: 1;
  transition: all 0.1s ease-in-out;
  display: block;
}
.cd-common-color-picker__palette input {
  max-width: unset;
}
.cd-common-color-picker__palette--up {
  top: unset;
  bottom: calc(100% + 5px);
}
.cd-common-color-picker__palette--left {
  right: unset;
  left: 0;
}
.cd-common-color-picker__palette--hidden {
  display: none !important;
  opacity: 0 !important;
}

/* temp_stylePlugin:client/components/settings/data/import_data/ImportData.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-import-data hr {
  width: 100%;
  border: none;
  height: 3px;
  padding: 0;
  margin: 30px 0;
  background-color: rgb(var(--button-color));
}

/* temp_stylePlugin:client/components/settings/data/import_data/process/ProcessData.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-process-data__drop {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 10px;
  border: 3px dashed rgb(var(--button-color));
  border-radius: 7px;
  padding: 30px 0;
  box-sizing: border-box;
  cursor: pointer;
  background-color: rgb(var(--module-color));
}
.cd-process-data__drop--active .cd-settings__import-data__drop {
  border-color: rgb(var(--primary-color));
}
.cd-process-data__drop--active .cd-settings__import-data__drop p {
  border-color: rgb(var(--primary-color));
}
.cd-process-data__drop p {
  color: rgb(var(--text-color)) !important;
  margin: 0;
}
.cd-process-data__drop input {
  display: none;
}

/* temp_stylePlugin:client/components/settings/data/import_data/import_section/ImportSection.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-import-section p {
  color: rgb(var(--text-color));
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.cd-import-section > div:not(:last-of-type) {
  margin-bottom: 25px;
}
.cd-import-section h3 {
  font-size: 1.3rem;
}
.cd-import-section ol {
  padding-left: 35px;
  box-sizing: border-box;
  list-style: decimal;
}
.cd-import-section ol li {
  line-height: 1.6rem;
  font-size: 1.1rem;
  color: rgb(var(--text-color));
  opacity: 0.85;
}
.cd-import-section ol li a {
  color: rgb(var(--text-color));
  opacity: 0.7;
  text-decoration: underline;
}

/* temp_stylePlugin:client/components/settings/data/import_data/review_import/ReviewImport.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-review-import h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: rgb(var(--text-color));
  font-weight: bold;
}
.cd-review-import h4 span {
  color: rgb(var(--secondary-color));
}
.cd-review-import__stats {
  margin: 20px 0;
}
.cd-review-import__session,
.cd-review-import__session-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cd-review-import__session > *,
.cd-review-import__session-header > * {
  display: flex;
  flex-direction: row;
  width: 33%;
}
.cd-review-import__session > *:not(:first-child),
.cd-review-import__session-header > *:not(:first-child) {
  justify-content: flex-end;
}
.cd-review-import__session-header {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 2px solid rgb(var(--theme-module-opposite), 0.15);
  margin-bottom: 8px;
}

/* temp_stylePlugin:client/components/sessions/Sessions.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-sessions {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.cd-sessions--mobile .cd-sessions__body {
  grid-template-columns: 1fr;
  grid-template-rows: 100px 1fr;
}
.cd-sessions--mobile .cd-sessions__list {
  height: 100%;
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
}
.cd-sessions--mobile .cd-sessions__list > * {
  width: auto;
  min-width: 250px;
  margin-right: 10px;
}
.cd-sessions__body {
  box-sizing: border-box;
  width: 100%;
  display: grid;
  height: 100%;
  grid-gap: 20px;
  grid-template-columns: 290px 1fr;
}
.cd-sessions__new {
  position: absolute;
  top: 15px;
  right: 15px;
}
.cd-sessions__list {
  height: calc(100vh - 230px);
  overflow: auto;
}
.cd-sessions__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-top: 30px;
  grid-auto-rows: 300px;
  grid-gap: 20px;
  width: 100%;
}
.cd-sessions__stats > * {
  height: 100%;
}
.cd-sessions__info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-column: span 2;
}
.cd-sessions__info-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cd-sessions__info-actions > * {
  margin: 4px;
}

/* temp_stylePlugin:client/components/modules/time_chart/TimeChart.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-time-chart {
  transition: all 0.1s ease-in-out;
  width: 100%;
  height: 100%;
  max-height: 100%;
  padding-left: 20px;
  box-sizing: border-box;
}
.cd-time-chart svg {
  overflow: visible;
}

/* temp_stylePlugin:client/components/modules/history/History.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-history {
  width: 100%;
  padding: 0 5px;
  box-sizing: border-box;
  height: 100%;
  overflow: visible;
}
.cd-history__actions {
  display: flex;
  flex-direction: row;
}
.cd-history__actions button:not(:last-of-type) {
  margin-right: 7px;
}
.cd-history__actions--on {
  background-color: rgb(var(--text-color)) !important;
  color: rgb(var(--background-color)) !important;
}
.cd-history__table {
  height: 100%;
  width: 100%;
}
.cd-timer-footer__body--mobile .cd-history__list {
  max-height: 135px;
  overflow-y: auto;
}
.cd-history__head {
  width: 100%;
}

/* temp_stylePlugin:client/components/modules/history/solve_row/HistorySolveRow.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-history-solve-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  height: 36px;
  padding-right: 5px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}
.cd-history-solve-row > div {
  color: rgb(var(--text-color));
  font-size: 1rem;
}
.cd-history-solve-row > div:first-of-type {
  min-width: 40px;
  padding-bottom: 3px;
  padding-right: 5px;
}
.cd-history-solve-row > div:nth-of-type(2) {
  width: 150px;
}
.cd-history-solve-row > div:nth-of-type(3) {
  justify-content: flex-end;
  text-align: right;
  width: calc(100% - 190px);
}
.cd-history-solve-row__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 5px;
}
.cd-history-solve-row__actions > * {
  margin-left: 10px;
}
.cd-history-solve-row__index {
  opacity: 0.6;
}
.cd-history-solve-row__action {
  transition: opacity 0.1s ease-in-out;
  opacity: 0.3;
  font-size: 1rem !important;
}
.cd-history-solve-row__action:hover {
  opacity: 0.7;
}
.cd-history-solve-row__action--active {
  opacity: 1 !important;
}
.cd-history-solve-row__time {
  color: rgb(var(--secondary-color)) !important;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding-top: 0;
}
.cd-history-solve-row__time span {
  font-size: 1rem;
  padding-top: 3px;
  border-bottom: solid 2px transparent;
  color: inherit;
}
.cd-history-solve-row__time:hover span {
  border-bottom: solid 2px !important;
}
.cd-history-solve-row__time--plusTwo {
  color: rgb(var(--warning-color)) !important;
}
.cd-history-solve-row__time--dnf {
  color: rgb(var(--error-color)) !important;
}
.cd-history-solve-row__time > i {
  color: rgb(var(--text-color));
  opacity: 0.6;
  font-size: 0.9rem;
  margin-left: 8px;
  position: relative;
  top: 1px;
}

/* temp_stylePlugin:client/components/solve_info/SolveInfo.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-solve-info {
  padding-top: 20px;
  position: relative;
}
.cd-solve-info__top-actions {
  position: absolute;
  top: 0;
  width: calc(100% - 45px);
  right: 45px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cd-solve-info__top-actions > div {
  display: flex;
  flex-direction: row;
}
.cd-solve-info__top-actions > div > *:not(:first-child) {
  margin-left: 10px;
}
.cd-solve-info h2 {
  width: 100%;
  font-size: 4.3rem;
  font-family: Roboto Mono, monospace;
  font-weight: bold;
  text-align: center;
  color: rgb(var(--text-color));
  margin: 20px 0 0;
}
.cd-solve-info p {
  color: rgb(var(--text-color));
  margin: 7px 0;
}
.cd-solve-info p i {
  font-style: italic;
}
.cd-solve-info__sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 20px auto 25px;
  border-bottom: 2px solid rgb(var(--button-color));
  padding-bottom: 25px;
}
.cd-solve-info__sub .cd-common__emblem {
  margin-bottom: 0;
}
.cd-solve-info__sub__orange {
  background-color: rgba(239, 108, 0, 0.7) !important;
}
.cd-solve-info__sub__orange span {
  color: white !important;
}
.cd-solve-info__sub__red {
  background-color: rgba(229, 57, 53, 0.7) !important;
}
.cd-solve-info__sub__red span {
  color: white !important;
}
.cd-solve-info__sub-actions {
  margin-top: 15px;
  align-items: center;
  display: flex;
  flex-direction: row;
}
.cd-solve-info__sub-actions > *:not(:last-child) {
  margin-right: 10px;
}
.cd-solve-info__sub-actions > div:last-of-type {
  margin-right: 0 !important;
}
.cd-solve-info__notes {
  width: 100%;
  display: flex;
  justify-content: center;
}
.cd-solve-info__notes legend {
  text-align: left !important;
}
.cd-solve-info__notes p {
  text-align: left;
  width: 100%;
  padding: 0;
  opacity: 0.9;
  color: rgb(var(--text-color));
}
.cd-solve-info__notes i {
  width: 100%;
  opacity: 0.7;
  text-align: center;
  color: rgb(var(--text-color));
}
.cd-solve-info textarea {
  margin-bottom: 5px;
  width: 100% !important;
}
.cd-solve-info legend {
  margin-bottom: 4px;
  width: 100%;
  text-align: center;
  color: rgb(var(--text-color));
  font-weight: bold;
}
.cd-solve-info__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-solve-info__info > * {
  width: 100%;
}
.cd-solve-info__nav {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.cd-solve-info__date {
  padding-top: 15px;
  border-top: 2px solid rgb(var(--button-color));
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-top: 30px;
}
.cd-solve-info__date span {
  text-align: center;
  color: rgb(var(--text-color));
}

/* temp_stylePlugin:client/components/common/horizontal_nav/HorizontalNav.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-horizontal-nav__body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cd-common-horizontal-nav__body > *:not(:last-of-type) {
  margin-right: 13px;
}

/* temp_stylePlugin:client/components/solve_info/scramble_info/ScrambleInfo.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-solve-info-scramble {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-solve-info-scramble__body {
  width: 100%;
  margin-bottom: 15px;
  max-width: 260px;
}
.cd-solve-info-scramble p {
  font-family: Roboto Mono, monospace;
  margin: 0 0 15px;
  opacity: 1;
  line-height: 1.5rem;
  text-align: center;
}

/* temp_stylePlugin:client/components/modules/scramble/ScrambleVisual.scss */
.cd-scramble-visual {
  display: grid;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/3;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 3%;
}
.cd-scramble-visual__invalid {
  width: 100%;
  height: 100%;
  color: rgb(var(--text-color));
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cd-scramble-visual__wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

/* temp_stylePlugin:client/components/modules/scramble/face/Face.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-scramble-face {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: grid;
  grid-gap: 3px;
}
.cd-scramble-face > span {
  background-color: rgb(var(--module-color));
  border-radius: 2px;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
}

/* temp_stylePlugin:client/components/common/inputs/textarea/TextArea.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-generic-input {
  color: var(--theme-color-opposite);
}
.cd-common-generic-input input,
.cd-common-generic-input select,
.cd-common-generic-input textarea {
  background-color: rgb(var(--button-color)) !important;
  padding: 10px;
  color: rgb(var(--theme-button-opposite));
  border-radius: 5px !important;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
  border: none;
  transition: all 0.1s ease-in-out, height 0ms;
}
.cd-common-generic-input input:focus,
.cd-common-generic-input select:focus,
.cd-common-generic-input textarea:focus {
  border-color: rgb(var(--theme-button-opposite));
}
.cd-common-generic-input input:disabled,
.cd-common-generic-input select:disabled,
.cd-common-generic-input textarea:disabled {
  opacity: 0.6;
}
.cd-common-generic-input input::-moz-placeholder,
.cd-common-generic-input select::-moz-placeholder,
.cd-common-generic-input textarea::-moz-placeholder {
  color: rgb(var(--theme-button-opposite)) !important;
  opacity: 0.35;
}
.cd-common-generic-input input::placeholder,
.cd-common-generic-input select::placeholder,
.cd-common-generic-input textarea::placeholder {
  color: rgb(var(--theme-button-opposite)) !important;
  opacity: 0.35;
}
.cd-common-generic-input__header {
  margin-bottom: 5px;
}
.cd-common-generic-input__footer {
  margin-top: 4px;
}
.cd-common-generic-input--noMargin {
  margin-bottom: 0 !important;
}
.cd-common-generic-input--fullWidth {
  width: 100%;
}
.cd-common-textarea {
  width: 100%;
}
.cd-common-textarea textarea {
  min-height: 100px;
  max-height: 400px;
  line-height: 1.4rem;
  resize: vertical;
  background-color: rgb(var(--button-color)) !important;
  padding: 10px;
  color: rgb(var(--theme-button-opposite));
  border-radius: 5px !important;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
  border: none;
  transition: all 0.1s ease-in-out, height 0ms;
}
.cd-common-textarea textarea:focus {
  border-color: rgb(var(--theme-button-opposite));
}
.cd-common-textarea textarea:disabled {
  opacity: 0.6;
}
.cd-common-textarea textarea::-moz-placeholder {
  color: rgb(var(--theme-button-opposite)) !important;
  opacity: 0.35;
}
.cd-common-textarea textarea::placeholder {
  color: rgb(var(--theme-button-opposite)) !important;
  opacity: 0.35;
}
.cd-common-textarea__max-length {
  opacity: 0.5;
  color: rgb(var(--text-color));
  font-size: 0.85rem;
  font-weight: 500;
  font-family:
    "Lato",
    "Helvetica Neue",
    Helvetica,
    Roboto,
    Arial,
    sans-serif;
}
.cd-common-textarea__max-length--over {
  opacity: 1;
  color: #e53935;
}
.cd-common-textarea--autoSize {
  resize: none;
}

/* temp_stylePlugin:client/components/solve_info/solution_info/SolutionInfo.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-solve-info-solution-info {
  position: relative;
  width: 100%;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 45px;
}
.cd-solve-info-solution-info__turn-count {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cd-solve-info-solution-info__steps {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.cd-solve-info-solution-info__steps > div:not(:last-of-type) {
  margin-bottom: 15px;
}
.cd-solve-info-solution-info > hr {
  width: 100%;
  height: 2px;
  background-color: rgb(var(--button-color));
  margin: 20px 0;
  border: none;
}
.cd-solve-info-solution-info__header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}
.cd-solve-info-solution-info__header legend {
  width: auto !important;
  margin-bottom: 0;
}
.cd-solve-info-solution-info__header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cd-solve-info-solution-info__step {
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  border: 2px solid rgb(var(--button-color));
  border-radius: 4px;
}
.cd-solve-info-solution-info__step--child {
  margin: 5px 0 10px 10px;
}
.cd-solve-info-solution-info__step-children {
  margin-top: 15px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.cd-solve-info-solution-info__step p {
  margin-top: 6px;
  font-family: Roboto Mono, monospace;
}
.cd-solve-info-solution-info__step-stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cd-solve-info-solution-info__step-stats > span {
  display: table;
  margin-right: 12px;
  color: rgb(var(--text-color));
  padding-top: 2px;
  opacity: 0.7;
  font-size: 0.9rem;
  font-weight: 500;
  border-top: 3px solid transparent;
}
.cd-solve-info-solution-info__step-stats > span:nth-of-type(1) {
  border-color: rgb(var(--info-color));
}
.cd-solve-info-solution-info__step-stats > span:nth-of-type(2) {
  border-color: rgb(var(--success-color));
}
.cd-solve-info-solution-info__step-stats > span:nth-of-type(3) {
  border-color: rgb(var(--warning-color));
}

/* temp_stylePlugin:client/components/solve_info/stats_info/StatsInfo.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-solve-info-stats-info__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}
.cd-solve-info-stats-info hr {
  width: 100%;
  height: 2px;
  border: none;
  background-color: rgb(var(--button-color));
  margin: 20px 0;
}
.cd-solve-info-stats-info > div:last-of-type {
  padding-bottom: 0 !important;
}
.cd-solve-info-stats-info__section {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 0;
}
.cd-solve-info-stats-info__section h3 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: rgb(var(--text-color));
  margin-top: 0;
}
.cd-solve-info-stats-info__card {
  background-color: rgb(var(--module-color));
  border-radius: 13px;
  padding: 15px;
  box-sizing: border-box;
  color: rgb(var(--text-color));
}
.cd-solve-info-stats-info__card i {
  font-size: 2rem;
  color: rgb(var(--secondary-color));
}
.cd-solve-info-stats-info__card p {
  margin-top: 10px;
  color: inherit;
  opacity: 0.7;
  font-size: 0.85rem;
}
.cd-solve-info-stats-info__card h4 {
  font-weight: bold;
  font-size: 1.9rem;
  color: inherit;
}

/* temp_stylePlugin:client/components/solve_info/stats_info/step_pie/StepPie.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-solve-info-step-pie {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}
.cd-solve-info-step-pie__pie {
  margin-top: 50px;
}
.cd-solve-info-step-pie svg > g {
  transform: translate(50%, 50%);
}

/* temp_stylePlugin:client/components/solve_info/stats_info/recognition_chart/RecognitionChart.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-solve-info-rec-chart__bar {
  display: grid;
  margin-bottom: 15px;
  grid-template-columns: 100px 1fr;
}
.cd-solve-info-rec-chart__bar p {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.8;
  margin-top: 2px;
}
.cd-solve-info-rec-chart__bar--gray .cd-solve-info-rec-chart__right-bar {
  background-color: rgb(var(--text-color));
  opacity: 0.3;
}
.cd-solve-info-rec-chart__left {
  color: rgb(var(--text-color));
  font-weight: 600;
  font-size: 0.9rem;
}
.cd-solve-info-rec-chart__right-bar {
  display: table;
  min-width: 5px;
  background-color: rgb(var(--primary-color));
  height: 5px;
  border-radius: 3px;
}

/* temp_stylePlugin:client/components/solve_info/stats_info/execution_time/ExecutionTime.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-solve-info-exec-time__body {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.cd-solve-info-exec-time__body > div:not(:first-of-type),
.cd-solve-info-exec-time__body > div:not(:last-of-type) {
  margin: 0 1px;
}
.cd-solve-info-exec-time__time {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-solve-info-exec-time__time--rec > span {
  background-color: rgb(var(--button-color)) !important;
}
.cd-solve-info-exec-time__time p {
  font-size: 0.85rem !important;
  opacity: 0.9 !important;
  min-height: 32px;
  text-align: center;
  margin: 0 !important;
}
.cd-solve-info-exec-time__time p:first-of-type {
  display: flex;
  align-items: flex-end;
}
.cd-solve-info-exec-time__time p:last-of-type {
  margin-top: 5px !important;
  opacity: 0.7 !important;
}
.cd-solve-info-exec-time__time > span {
  display: table;
  width: 100%;
  height: 5px;
  margin-top: 3px;
  border-radius: 3px;
  background-color: rgb(var(--primary-color));
}

/* temp_stylePlugin:client/components/solve_info/stats_info/ll_trainer/LLTrainer.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-solve-info-ll-trainer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.cd-solve-info-ll-trainer__row {
  width: 50%;
}

/* temp_stylePlugin:client/components/trainer/algo_visual/AlgoVisual.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-cube-image__visual {
  width: 90px;
  height: 90px;
  display: grid;
  grid-gap: 3px;
}
.cd-cube-image__cubelet {
  background-color: rgb(var(--primary-color));
  border-radius: 5px;
}
.cd-cube-image svg,
.cd-cube-image object,
.cd-cube-image img {
  width: 130px;
  height: 130px;
  max-width: 100%;
}
.cd-cube-image__3d-wrapper {
  width: 90px;
  height: 90px;
}
.cd-cube-image__3d-wrapper--custom span,
.cd-cube-image__3d-wrapper--custom button {
  display: table;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
.cd-cube-image__3d-wrapper--custom span:hover,
.cd-cube-image__3d-wrapper--custom button:hover {
  opacity: 1;
}
.cd-cube-image__3d-wrapper--custom span:disabled,
.cd-cube-image__3d-wrapper--custom button:disabled {
  opacity: 0 !important;
}
.cd-cube-image__3d-wrapper--side {
  min-width: 100px;
  min-height: 100px;
  display: grid;
  grid-gap: 8px;
}
.cd-cube-image__3d-wrapper > div:first-of-type {
  position: absolute;
  top: 54px;
  left: -84px;
  transform: skew(0, 29deg) rotateY(46deg);
}
.cd-cube-image__3d-wrapper > div:nth-of-type(2) {
  position: absolute;
  top: -40px;
  left: -14px;
  transform: rotate(-29.5deg) rotateY(39deg) rotateX(45deg) translate(-50%, 0);
}
.cd-cube-image__3d-wrapper > div:nth-of-type(3) {
  position: absolute;
  top: 50px;
  right: -84px;
  transform: skew(0, -29deg) rotateY(-46deg);
}
.cd-trainer__cube__image {
  display: flex;
  justify-content: center;
}
.cd-trainer__cube-image__icon {
  width: 100%;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cd-trainer__cube-image__icon i {
  font-size: 4rem;
  color: rgb(var(--text-color));
}
.cd-trainer__cube-image__override {
  display: flex;
}
.cd-trainer__cube-image__override svg g > path {
  fill: rgb(var(--primary-color)) !important;
}

/* temp_stylePlugin:client/components/solve_info/notes_info/NotesInfo.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-solve-info-notes i {
  color: rgb(var(--text-color));
}

/* temp_stylePlugin:client/components/common/avatar/Avatar.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-avatar {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.cd-avatar__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cd-avatar__body {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cd-avatar__verified {
  color: rgb(var(--info-color));
  margin-left: 5px;
  display: table;
}
.cd-avatar__name {
  display: flex;
  flex-direction: column;
}
.cd-avatar__elo {
  font-size: 0.85rem;
  color: rgb(var(--text-color), 0.7);
}
.cd-avatar__username {
  font-weight: 500;
  position: relative;
  font-size: 1rem;
  display: flex;
  align-content: center;
  flex-direction: row;
  color: rgb(var(--text-color));
  word-break: normal;
}
.cd-avatar__emblems {
  margin-top: 3px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cd-avatar__emblems > * {
  margin: 6px 6px 0 0 !important;
}
.cd-avatar__options {
  margin-left: 5px;
}
.cd-avatar__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 8px;
  max-width: calc(100% - 50px - 8px);
}
.cd-avatar__info > span:not(:first-of-type) {
  margin-top: 4px;
}
.cd-avatar--vertical {
  flex-direction: column;
}
.cd-avatar--vertical .cd-avatar__info {
  margin-top: 5px;
  margin-left: unset;
  max-width: unset;
}
.cd-avatar__email {
  display: table;
  font-weight: 400;
  font-size: 0.9rem;
  opacity: 0.8;
  color: rgb(var(--text-color));
  word-break: break-all;
}

/* temp_stylePlugin:client/components/profile/wca/WCA.scss */
.cd-profile__wca {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

/* temp_stylePlugin:client/components/common/emblem/Emblem.scss */
.cd-common__emblem {
  background-color: rgb(var(--button-color));
  border-radius: 15px;
  width: auto;
  margin-bottom: 5px;
  padding: 5px 11px;
  box-sizing: border-box;
  display: table;
}
.cd-common__emblem__icon {
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cd-common__emblem--small {
  padding: 3px 7px !important;
  font-weight: 600 !important;
}
.cd-common__emblem--small span {
  font-size: 0.85rem !important;
}
.cd-common__emblem__body {
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  font-weight: 500;
  align-items: center;
  color: rgb(var(--text-color));
}
.cd-common__emblem i {
  color: inherit;
  margin-top: 1px;
}
.cd-common__emblem i + span {
  margin-left: 5px;
}
.cd-common__emblem span {
  display: table;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  white-space: pre;
}

/* temp_stylePlugin:client/components/admin/manage_user/ManageUser.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-manage-user {
  position: relative;
  padding: 15px;
  max-width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
  box-sizing: border-box;
}
.cd-manage-user__user {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(var(--button-color));
}
.cd-manage-user__sections {
  width: 100%;
  display: grid;
  grid-gap: 25px;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.cd-manage-user__table tr > td:first-child {
  text-transform: capitalize;
  font-weight: bold;
}
.cd-manage-user__grid-body {
  margin-top: 5px;
  background-color: rgb(var(--module-color));
  border-radius: 5px;
  min-height: 80px;
  max-height: 250px;
  overflow: auto;
  padding: 10px;
  box-sizing: border-box;
}
.cd-manage-user__grid-body > *:not(:last-child) {
  border-bottom: 2px solid rgb(var(--button-color));
}
.cd-manage-user__grid-row {
  box-sizing: border-box;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 1fr 120px;
}
.cd-manage-user__grid-row--left p {
  color: rgb(var(--text-color));
  font-size: 1rem;
  margin-bottom: 0;
}
.cd-manage-user__grid-row--left span {
  display: table;
  margin-top: 3px;
  font-size: 0.9rem;
  color: rgb(var(--text-color));
  opacity: 0.7;
}
.cd-manage-user__grid-row--right span {
  font-size: 0.9rem;
  display: table;
  color: rgb(var(--text-color));
  opacity: 0.5;
}
@media (max-width: 768px) {
  .cd-manage-user {
    max-width: 95vw;
    max-height: 90vh;
    padding: 10px;
  }
  .cd-manage-user__sections {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  .cd-manage-user__grid-body {
    max-height: 200px;
  }
}
@media (max-width: 480px) {
  .cd-manage-user {
    max-width: 98vw;
    max-height: 95vh;
    padding: 8px;
  }
  .cd-manage-user__grid-body {
    max-height: 150px;
  }
}

/* temp_stylePlugin:client/components/admin/manage_user/user_actions/UserActions.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-manage-user-actions {
  display: flex;
  flex-direction: row;
  margin: 15px 0;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}
.cd-manage-user-actions > * {
  margin-right: 7px;
  margin-bottom: 7px;
}

/* temp_stylePlugin:client/components/admin/manage_user/ban_user/BanUser.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-ban-user__duration {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.cd-ban-user__duration--forever {
  opacity: 0.6;
  pointer-events: none;
}
.cd-ban-user__options {
  margin: 20px 0;
  width: 100%;
}

/* temp_stylePlugin:client/components/common/old_generic_input/GenericInput.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}

/* temp_stylePlugin:client/components/common/old_input/input_legend/InputLegend.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-input-legend {
  color: rgb(var(--text-color));
  font-weight: 500;
  font-size: 0.95rem;
}
.cd-common-input-legend__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family:
    "Lato",
    "Helvetica Neue",
    Helvetica,
    Roboto,
    Arial,
    sans-serif;
}

/* temp_stylePlugin:client/components/common/old_input/input_info/InputInfo.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-common-info {
  opacity: 0.6;
  color: rgb(var(--text-color));
  display: table;
  font-family:
    "Lato",
    "Helvetica Neue",
    Helvetica,
    Roboto,
    Arial,
    sans-serif;
  font-size: 0.85rem;
}

/* temp_stylePlugin:client/components/admin/manage_user/user_summary/UserSummary.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-manage-user-summary {
  grid-column: span 2;
}
.cd-manage-user-summary__section {
  padding: 10px;
}
@media (max-width: 1200px) {
  .cd-manage-user-summary {
    grid-column: span 1;
  }
}
.cd-manage-user-summary__pills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cd-manage-user-summary__pills > * {
  margin-right: 10px;
  margin-bottom: 10px;
}
.cd-manage-user-summary__pill {
  padding: 10px 8px 10px 12px;
  background-color: rgb(var(--button-color));
  border: 3px solid rgb(var(--theme-button-opposite), 0.1);
  border-radius: 20px;
}
.cd-manage-user-summary__pill span {
  font-size: 0.95rem;
}
.cd-manage-user-summary__solve-cubetype > span {
  color: rgb(var(--text-color));
  opacity: 0.8;
  font-size: 1.1rem;
  margin: 5px 0 10px;
  font-style: italic;
}
.cd-manage-user-summary__solve-cubetype:not(:last-child) {
  margin-bottom: 15px;
}
.cd-manage-user-summary__pill-title {
  color: rgb(var(--theme-button-opposite));
}
.cd-manage-user-summary__pill-value {
  padding: 4px 10px;
  margin-left: 8px;
  background-color: rgb(var(--secondary-color));
  border-radius: 12px;
  color: rgb(var(--theme-secondary-opposite));
}
.cd-manage-user-summary > *:not(:last-child) {
  border-bottom: 2px solid rgb(var(--theme-module-opposite), 0.2);
}

/* temp_stylePlugin:client/components/profile/report/ReportProfile.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}

/* temp_stylePlugin:client/components/profile/edit_profile/EditProfile.scss */
.cd-profile__edit__bio {
  grid-column: span 2;
}
.cd-profile__edit__grid {
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.cd-profile__edit :global(.cd-common-input) .cd-common-input__input {
  background-color: rgba(71, 85, 105, 0.8) !important;
  color: rgb(226, 232, 240) !important;
  border: 1px solid rgba(148, 163, 184, 0.3) !important;
  border-radius: 12px !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease-in-out !important;
}
.cd-profile__edit :global(.cd-common-input) .cd-common-input__input:focus {
  border-color: rgba(99, 102, 241, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3) !important;
}
.cd-profile__edit :global(.cd-common-input) .cd-common-input__input::-moz-placeholder {
  color: rgba(148, 163, 184, 0.7) !important;
}
.cd-profile__edit :global(.cd-common-input) .cd-common-input__input::placeholder {
  color: rgba(148, 163, 184, 0.7) !important;
}
.cd-profile__edit :global(.cd-common-textarea) .cd-common-textarea__input {
  background-color: rgba(71, 85, 105, 0.8) !important;
  color: rgb(226, 232, 240) !important;
  border: 1px solid rgba(148, 163, 184, 0.3) !important;
  border-radius: 12px !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease-in-out !important;
}
.cd-profile__edit :global(.cd-common-textarea) .cd-common-textarea__input:focus {
  border-color: rgba(99, 102, 241, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3) !important;
}
.cd-profile__edit :global(.cd-common-textarea) .cd-common-textarea__input::-moz-placeholder {
  color: rgba(148, 163, 184, 0.7) !important;
}
.cd-profile__edit :global(.cd-common-textarea) .cd-common-textarea__input::placeholder {
  color: rgba(148, 163, 184, 0.7) !important;
}
.cd-profile__edit :global(.cd-common-input__legend),
.cd-profile__edit :global(.cd-common-textarea__legend) {
  color: rgb(248, 250, 252) !important;
  font-weight: 500 !important;
  margin-bottom: 0.5rem !important;
}
.cd-profile__edit :global(.cd-common-input__info),
.cd-profile__edit :global(.cd-common-textarea__info) {
  color: rgb(148, 163, 184) !important;
  font-size: 0.875rem !important;
  margin-top: 0.25rem !important;
}
.cd-profile__edit :global(.cd-button):not(:global(.cd-button--primary)):not(:global(.cd-button--danger)):not(:global(.cd-button--warning)) {
  background: linear-gradient(135deg, rgba(71, 85, 105, 0.8), rgba(100, 116, 139, 0.8)) !important;
  color: rgb(226, 232, 240) !important;
  border: 1px solid rgba(148, 163, 184, 0.3) !important;
  border-radius: 12px !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out !important;
  font-weight: 500 !important;
}
.cd-profile__edit :global(.cd-button):not(:global(.cd-button--primary)):not(:global(.cd-button--danger)):not(:global(.cd-button--warning)):hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.9), rgba(71, 85, 105, 0.9)) !important;
  color: rgb(248, 250, 252) !important;
  border-color: rgba(148, 163, 184, 0.5) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* temp_stylePlugin:client/components/sessions/new_session/CreateNewSession.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-create-new-session {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* temp_stylePlugin:client/components/sessions/session/Session.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-session-row {
  display: flex;
  padding: 13px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  background-color: rgb(var(--module-color));
  width: 100%;
  border: 4px solid transparent;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.cd-session-row h4 {
  color: rgb(var(--text-color));
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}
.cd-session-row__left {
  display: flex;
  flex-direction: row;
}
.cd-session-row__left > span {
  cursor: pointer;
}
.cd-session-row__left button {
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.5;
  margin-right: 13px;
  color: rgb(var(--text-color));
}
.cd-session-row__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.cd-session-row__info span {
  display: table;
  margin-top: 3px;
  font-size: 0.85rem !important;
  opacity: 0.7;
  color: rgb(var(--text-color)) !important;
}
.cd-session-row--selected {
  border: 4px solid rgb(var(--primary-color)) !important;
}
.cd-session-row__current {
  background-color: rgb(var(--primary-color));
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  font-weight: bold;
  top: 5px;
  right: 5px;
  font-size: 0.8rem;
  padding: 3px 6px;
  border-radius: 4px;
}

/* temp_stylePlugin:client/components/common/page_title/PageTitle.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-page-title {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.cd-page-title__title {
  display: flex;
  flex-direction: row;
  font-family:
    Kontora,
    Poppins,
    Arial,
    "Helvetica Neue",
    Helvetica,
    sans-serif;
  align-items: center;
  font-weight: 500;
  font-size: 2.7rem;
}
.cd-page-title__title i {
  position: relative;
  top: 3px;
  margin-right: 12px;
}
.cd-page-title__lines {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}
.cd-page-title__line {
  background-color: rgb(var(--primary-color));
  height: 4px;
  width: 50px;
  border-radius: 4px;
  margin-right: 5px;
}
.cd-page-title__line--secondary {
  width: 35px;
  background-color: rgb(var(--secondary-color));
}

/* temp_stylePlugin:client/components/common/module/Module.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-module {
  background-color: rgb(var(--module-color));
  border-radius: 15px;
  padding: 22px;
  overflow: visible;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
.cd-module__body {
  width: 100%;
  height: 100%;
}
.cd-module--square {
  border: 3px solid rgb(var(--theme-background-opposite), 0.15);
  padding: 20px;
  box-sizing: border-box;
  border-radius: 0;
}

/* temp_stylePlugin:client/components/modules/time_distro/TimeDistro.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-time-distro {
  height: 100%;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  transition: all 0.1s ease-in-out;
}
.cd-time-distro__buckets {
  position: absolute;
  top: 5px;
  right: 5px;
  opacity: 0;
  z-index: 1000;
  transition: all 0.1s ease-in-out;
}
.cd-time-distro > div:last-of-type {
  display: flex;
}
.cd-time-distro:hover .cd-time-distro__buckets {
  opacity: 1;
}

/* temp_stylePlugin:client/components/modules/bar_graph/BarGraph.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-bar-graph {
  position: relative;
  transition: all 0.1s ease-in-out;
  width: 100%;
  height: 100%;
  max-height: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

/* temp_stylePlugin:client/components/stats/Stats.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}

/* temp_stylePlugin:client/components/stats/cube_stats/CubeStats.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-cube-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  grid-auto-rows: 350px;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

/* temp_stylePlugin:client/components/stats/cube_stats/featured/CubeStatsFeatured.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-stats-featured {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto)) !important;
}
.cd-stats-featured__right {
  display: grid;
  grid-gap: 10px;
  grid-template-rows: 1fr 1fr;
}
.cd-stats-featured__single-pb {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.cd-stats-featured__single-pb ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: rgb(var(--text-color));
}
.cd-stats-featured__single-pb ul li i {
  -moz-column-span: inherit;
  column-span: inherit;
  font-size: 1.8rem;
}
.cd-stats-featured__single-pb ul li p {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.cd-stats-featured__single-pb ul li span {
  font-size: 0.9rem;
  opacity: 0.5;
  display: table;
  color: inherit;
}
.cd-stats-featured__single-pb ul li > div {
  margin-left: 5px;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.cd-stats-featured__spb-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cd-stats-featured__spb-scramble {
  display: flex;
  align-items: flex-end;
}
.cd-stats-featured__spb-scramble > * {
  height: unset;
}

/* temp_stylePlugin:client/components/stats/common/number_block/NumberBlock.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-number-block {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  height: 100%;
  color: inherit;
  flex-direction: column;
  transition: all 0.1s ease-in-out;
  justify-content: space-between;
}
.cd-number-block > * {
  color: inherit;
}
.cd-number-block button {
  cursor: default;
}
.cd-number-block__header {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  align-items: center;
}
.cd-number-block__header p {
  font-size: 1rem;
  text-align: left;
}
.cd-number-block--button:hover .cd-number-block__value {
  cursor: pointer !important;
}
.cd-number-block--button:hover .cd-number-block__value > span {
  border-bottom: 3px solid;
}
.cd-number-block--center {
  justify-content: center;
}
.cd-number-block--center .cd-number-block__body {
  flex-direction: row !important;
}
.cd-number-block--small {
  padding: 10px 15px !important;
}
.cd-number-block--small .cd-number-block__value span {
  font-size: 1.4rem;
  line-height: 0.9rem;
}
.cd-number-block--noPadding {
  padding: 0 !important;
}
.cd-number-block--vertical .cd-number-block__body {
  flex-direction: column;
}
.cd-number-block--large .cd-number-block__value span {
  font-size: 3.7rem;
  line-height: 4rem;
}
.cd-number-block__body {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: inherit;
}
.cd-number-block__icon {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  display: flex;
  font-size: 1.2rem;
  color: rgb(var(--theme-background-opposite));
  justify-content: center;
  align-items: center;
}
.cd-number-block__icon--darkIcon {
  color: rgb(var(--theme-background)) !important;
}
.cd-number-block__value {
  color: inherit;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cd-number-block__value span {
  color: inherit;
  display: table;
  font-size: 2.3rem;
  line-height: 2.2rem;
  font-weight: bold;
  border-bottom: 3px solid transparent;
  font-family:
    Kontora,
    Poppins,
    Arial,
    "Helvetica Neue",
    Helvetica,
    sans-serif;
}
.cd-number-block__value p {
  font-weight: 500;
  opacity: 0.9;
  color: rgb(var(--text-color));
  margin: 0 0 0 10px;
  font-size: 1rem;
}

/* temp_stylePlugin:client/components/stats/common/stat_module/StatModule.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-stat-module {
  background-color: rgb(var(--module-color));
  border-radius: 20px;
  padding: 25px;
  width: 100%;
  box-sizing: border-box;
}

/* temp_stylePlugin:client/components/stats/common/stat_section/StatSection.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-stat-section {
  display: grid;
  grid-gap: 5px;
  width: 100%;
  height: 100%;
  grid-template-rows: 40px minmax(0, auto);
}
.cd-stat-section__header {
  margin-bottom: 0;
}
.cd-stat-section__header h2 {
  font-family:
    Kontora,
    Poppins,
    Arial,
    "Helvetica Neue",
    Helvetica,
    sans-serif;
  font-size: 1.7rem !important;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

/* temp_stylePlugin:client/components/stats/cube_stats/averages/CubeStatAverages.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-cube-stat-avg {
  display: grid;
  grid-auto-rows: 1fr;
}
.cd-cube-stat-avg > *:nth-child(odd) {
  background-color: rgba(var(--theme-background-opposite), 0.05);
}

/* temp_stylePlugin:client/components/stats/common/avg_row/AvgRow.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-avg-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  box-sizing: border-box;
  border-radius: 5px;
}
.cd-avg-row__desc {
  opacity: 1;
  font-size: 1.2rem;
  padding: 0;
  margin: 0;
}
.cd-avg-row__desc span {
  font-weight: bold;
  display: inline-block;
}
.cd-avg-row__blue {
  color: rgb(var(--info-color));
  text-shadow: 0 0 10px rgba(var(--info-color), 0.4);
}
.cd-avg-row__value {
  color: rgb(var(--secondary-color));
  font-weight: bold;
  font-size: 1.3rem;
}

/* temp_stylePlugin:client/components/modules/history/history_modal/HistoryModal.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-history-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  position: relative;
}
.cd-history-modal__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cd-history-modal__header h2 {
  text-transform: capitalize;
  margin-bottom: 2px;
}
.cd-history-modal__header h2 span {
  color: rgb(var(--secondary-color));
}
.cd-history-modal__header p {
  font-size: 1.1rem;
}
.cd-history-modal .cd-history__list {
  max-height: 500px;
}
.cd-history-modal__toggle-text {
  position: absolute;
  top: 0;
  left: 0;
}
.cd-history-modal__body {
  margin-top: 40px;
  width: 100%;
}

/* temp_stylePlugin:client/components/modules/solves_text/SolvesText.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-solves-text__text {
  margin-top: 10px;
  border-radius: 5px;
  color: rgb(var(--text-color));
  background-color: rgb(var(--module-color));
  padding: 15px;
  box-sizing: border-box;
  font-size: 1rem;
  font-family: Roboto Mono, monospace;
  margin-bottom: 15px;
  overflow-x: auto;
  max-height: 600px;
  white-space: pre;
}
.cd-solves-text__text--wrapText {
  white-space: pre-wrap !important;
}
.cd-solves-text__options {
  display: flex;
  flex-direction: column;
}
.cd-solves-text__options > * {
  width: 50%;
}
.cd-solves-text__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cd-solves-text__actions > * {
  margin-right: 15px;
}

/* temp_stylePlugin:client/components/stats/common/sub_stats/SubStats.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-sub-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 10px;
  height: 100%;
}

/* temp_stylePlugin:client/components/stats/all/AllStats.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-overall-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  grid-auto-rows: 350px;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

/* temp_stylePlugin:client/components/stats/common/stats_grid/StatsGrid.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-stats-grid {
  width: 100%;
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
}

/* temp_stylePlugin:client/components/stats/common/match_stats/MatchStats.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-match-stats {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cd-match-stats__upper > h3 {
  width: 100%;
  font-size: 2rem;
  margin: 0;
  text-align: center;
}
.cd-match-stats__pie {
  width: 100%;
  max-width: 150px;
  margin: 10px auto 20px;
}
.cd-match-stats__ratio {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 350px;
  margin: 30px auto 0;
  position: relative;
}
.cd-match-stats__ratio h4 {
  font-size: 1.4rem;
}
.cd-match-stats__ratio-side {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* temp_stylePlugin:client/components/modules/cube_distro/CubeDistro.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-cube-distro {
  height: 100%;
}

/* temp_stylePlugin:client/components/common/password_strength/PasswordStrength.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-password-strength {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 5px 0;
}
.cd-password-strength__case {
  margin-bottom: 4px;
  color: rgb(var(--text-color));
  font-size: 0.9rem;
  opacity: 0.5;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
.cd-password-strength__case i {
  display: none;
  position: relative;
  top: 1px;
  margin-right: 5px;
}
.cd-password-strength__case--checked {
  color: #2dbd61;
  opacity: 1;
}
.cd-password-strength__case--checked i {
  display: unset;
}

/* temp_stylePlugin:client/components/login/LoginWrapper.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-login {
  width: 95%;
  max-width: 400px;
  background-color: rgb(var(--module-color));
  padding: 25px;
  box-sizing: border-box;
  border-radius: 5px;
}
.cd-login a {
  color: rgb(var(--text-color));
  text-decoration: underline;
  margin: 0 0 15px;
  display: inline-block;
  font-size: 0.9rem;
  opacity: 0.7;
}
.cd-login p {
  font-size: 0.9rem;
  margin-top: 25px;
  color: rgb(var(--text-color));
  margin-bottom: 0;
}
.cd-login p a {
  margin-bottom: 0;
}
.cd-login--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.cd-login__section p {
  text-align: center;
  line-height: 1.4rem;
  margin: 0 0 15px !important;
}
.cd-login__wrapper {
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background-color: rgb(var(--background-color));
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.cd-login__wrapper a img {
  width: 200px;
  margin: 100px 0 30px;
}
@keyframes gradientMove {
  0% {
    background-position:
      0% 50%,
      25% 25%,
      75% 75%,
      0% 0%;
  }
  50% {
    background-position:
      100% 50%,
      75% 75%,
      25% 25%,
      0% 0%;
  }
  100% {
    background-position:
      0% 50%,
      25% 25%,
      75% 75%,
      0% 0%;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.6;
  }
  33% {
    transform: translateY(-20px) translateX(10px);
    opacity: 1;
  }
  66% {
    transform: translateY(-10px) translateX(-5px);
    opacity: 0.8;
  }
}
@keyframes meshMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(50px) translateY(50px);
  }
}
@keyframes cubeRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes cubeFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes iconSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes iconOrbit {
  from {
    transform: rotate(0deg) translateX(50px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }
}
@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes iconFlash {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* temp_stylePlugin:client/components/trainer/Trainer.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-trainer__coming-soon {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.cd-trainer__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  min-height: 40vh;
  position: relative;
}
.cd-trainer__hero__animation {
  margin-bottom: 2rem;
  position: relative;
}
.cd-trainer__cube-container {
  position: relative;
  display: inline-block;
  animation: float 6s ease-in-out infinite;
}
.cd-trainer__cube-icon {
  color: rgb(var(--primary-color));
  filter: drop-shadow(0 10px 30px rgba(var(--primary-color), 0.3));
  animation: rotate 12s linear infinite;
}
.cd-trainer__floating-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cd-trainer__icon {
  position: absolute;
  color: rgb(var(--secondary-color));
  opacity: 0.8;
}
.cd-trainer__icon--gear {
  top: -80px;
  left: -80px;
  animation: orbit 8s linear infinite, spin 4s linear infinite;
}
.cd-trainer__icon--clock {
  top: -80px;
  right: -80px;
  animation: orbit 10s linear infinite reverse, bounce 2s ease-in-out infinite;
}
.cd-trainer__icon--lightning {
  bottom: -80px;
  left: 0;
  animation: orbit 12s linear infinite, flash 3s ease-in-out infinite;
}
.cd-trainer__content {
  max-width: 800px;
  margin: 0 auto;
}
.cd-trainer__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: rgb(var(--text-color));
}
.cd-trainer__title-line {
  display: block;
}
.cd-trainer__title-line--highlight {
  background: linear-gradient(135deg, rgb(var(--primary-color)), rgb(var(--secondary-color)));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
}
.cd-trainer__description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgb(var(--text-color));
  font-weight: 700;
  margin-bottom: 3rem;
  opacity: 1;
}
.cd-trainer__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.cd-trainer__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(var(--module-color), 0.8);
  border-radius: 16px;
  border: 1px solid rgba(var(--button-color), 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.cd-trainer__feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(var(--primary-color), 0.1);
  border-color: rgba(var(--primary-color), 0.5);
}
.cd-trainer__feature__icon {
  flex-shrink: 0;
  padding: 12px;
  background: rgba(var(--primary-color), 0.1);
  border-radius: 12px;
  color: rgb(var(--primary-color));
}
.cd-trainer__feature__content {
  flex: 1;
}
.cd-trainer__feature__content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: rgb(var(--text-color));
}
.cd-trainer__feature__content p {
  font-size: 0.95rem;
  color: rgb(var(--text-color));
  margin: 0;
  opacity: 0.9;
}
.cd-trainer__progress {
  margin: 1.5rem 0;
  text-align: center;
}
.cd-trainer__progress__bar {
  width: 100%;
  height: 8px;
  background: rgba(var(--button-color), 0.3);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}
.cd-trainer__progress__fill {
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, rgb(var(--primary-color)), rgb(var(--secondary-color)));
  border-radius: 4px;
  position: relative;
  animation: progress-glow 2s ease-in-out infinite alternate;
}
.cd-trainer__progress__fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s ease-in-out infinite;
}
.cd-trainer__progress__text {
  font-size: 0.95rem;
  color: rgb(var(--text-color));
  font-weight: 500;
  margin: 0;
}
.cd-trainer__footer {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(var(--button-color), 0.3);
  margin-top: 2rem;
}
.cd-trainer__footer p {
  font-size: 1.1rem;
  color: rgb(var(--text-color));
  margin: 0;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .cd-trainer__coming-soon {
    padding: 1rem;
  }
  .cd-trainer__hero {
    padding: 2rem 0;
  }
  .cd-trainer__title {
    font-size: 2.5rem;
  }
  .cd-trainer__description {
    font-size: 1.1rem;
  }
  .cd-trainer__features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cd-trainer__feature {
    padding: 1.25rem;
  }
  .cd-trainer__cube-icon {
    width: 80px;
    height: 80px;
  }
  .cd-trainer__floating-icons .cd-trainer__icon--gear,
  .cd-trainer__floating-icons .cd-trainer__icon--clock {
    top: -50px;
  }
  .cd-trainer__floating-icons .cd-trainer__icon--gear {
    left: -50px;
  }
  .cd-trainer__floating-icons .cd-trainer__icon--clock {
    right: -50px;
  }
  .cd-trainer__floating-icons .cd-trainer__icon--lightning {
    bottom: -50px;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(100px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(100px) rotate(-360deg);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes flash {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes progress-glow {
  0% {
    box-shadow: 0 0 5px rgba(var(--primary-color), 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(var(--primary-color), 0.8), 0 0 30px rgba(var(--secondary-color), 0.4);
  }
}
@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* temp_stylePlugin:client/components/account/Account.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-account {
  width: 100%;
}
.cd-account > div {
  margin-top: 15px;
  width: 100%;
  max-width: 400px;
}
.cd-account-nav {
  max-width: unset !important;
}

/* temp_stylePlugin:client/components/community/Community.scss */
.cd-community {
  position: relative;
}
.cd-community__nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cd-community__search-input {
  margin-left: 10px;
}
.cd-community .cd-common__horizontal-nav__body {
  margin-right: 10px;
}

/* temp_stylePlugin:client/components/community/profile_row/ProfileRow.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-profile-row {
  background-color: rgb(var(--module-color));
  width: 100%;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  margin-bottom: 7px;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  justify-content: space-between;
}
.cd-profile-row--me {
  position: sticky;
  top: 10px;
  bottom: 10px;
  z-index: 100;
  border: 3px solid rgb(var(--primary-color));
}
.cd-profile-row__options {
  margin-left: 8px;
}
.cd-profile-row__name {
  width: 40%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cd-profile-row__time {
  width: 20%;
}
.cd-profile-row__time span {
  font-weight: bold;
  font-size: 1rem;
  color: rgb(var(--text-color)) !important;
}
.cd-profile-row__date {
  width: 40%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.cd-profile-row__date span {
  display: table;
  color: inherit;
}
.cd-profile-row__date a {
  font-weight: normal;
}
.cd-profile-row__index {
  margin-right: 8px;
  color: rgb(var(--secondary-color));
}
.cd-profile-row > * {
  font-weight: 600;
  font-size: 1.1rem;
  color: rgb(var(--text-color));
  text-align: left;
}
.cd-profile-row > *:nth-child(2) {
  text-align: center;
}
.cd-profile-row > *:nth-child(3) {
  text-align: right;
}

/* temp_stylePlugin:client/components/play/target/target_times/TargetTimes.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-target-times {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.cd-target-times > i {
  color: rgb(var(--text-color));
  font-size: 1.2rem;
  margin: 30px auto 0;
}
.cd-target-times__wrapper {
  overflow-y: auto;
}
.cd-target-times--current {
  color: rgb(var(--warning-color)) !important;
}
.cd-target-times__button--plusTwo {
  color: rgb(var(--warning-color)) !important;
}
.cd-target-times__button--failed,
.cd-target-times__button--dnf {
  color: rgb(var(--error-color)) !important;
}
.cd-target-times__target {
  color: rgb(var(--text-color)) !important;
  opacity: 0.6;
}
.cd-target-times__solve-info {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.cd-target-times__solve-info > button,
.cd-target-times__solve-info > span {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  font-weight: bold;
  white-space: pre;
  font-size: 1rem;
  text-align: right;
  color: rgb(var(--secondary-color));
}
.cd-target-times__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cd-target-times__actions > * {
  margin-right: 5px;
  transition: opacity 0.1s ease-in-out;
  opacity: 0.3;
  font-size: 1rem !important;
}
.cd-target-times__actions > *:hover {
  opacity: 0.7;
}
.cd-target-times__row {
  padding: 0 6px;
  height: 30px;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  display: grid;
  grid-template-columns: 1fr 135px;
}
.cd-target-times__desc {
  text-align: left;
  font-weight: 600;
  color: rgb(var(--text-color));
}
.cd-target-times__desc span {
  opacity: 0.45;
  color: inherit;
  font: inherit;
}

/* temp_stylePlugin:client/components/play/game/Game.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-games-intro {
  margin-top: 50px;
}
.cd-games-intro__body {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.cd-games-intro__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  width: 300px;
}
.cd-games-intro__actions > * {
  margin-bottom: 10px;
}
.cd-games-intro-challenge {
  width: 100%;
}
.cd-games-intro__sub-actions {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cd-games-intro__header {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cd-games-intro__header i {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* temp_stylePlugin:client/components/play/Play.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-play {
  display: table;
  width: 100%;
}
.cd-play__list {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 100px;
  display: grid;
  grid-gap: 25px;
}

/* temp_stylePlugin:client/components/play/target/match_module/MatchModule.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-match-module {
  display: grid;
  grid-template-rows: 40px 1fr;
  height: 100%;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}
.cd-match-module__header {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}
.cd-match-module__objective {
  color: rgb(var(--text-color));
  font-weight: 500;
  font-size: 1.1rem;
  opacity: 0.8;
}
.cd-match-module h2 {
  color: rgb(var(--text-color));
  font-weight: bold;
  font-size: 4.5rem;
  margin: 5px 0 0;
}
.cd-match-module p {
  color: rgb(var(--text-color));
  opacity: 0.7;
  font-size: 0.9rem;
}
.cd-match-module__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}
.cd-match-module--green {
  color: rgb(var(--success-color)) !important;
}
.cd-match-module--red {
  color: rgb(var(--error-color)) !important;
}
.cd-match-module__alert {
  padding: 4px 14px;
  border-radius: 15px;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 10px;
}
.cd-match-module__alert--red {
  background-color: rgb(var(--error-color));
  color: white;
}
.cd-match-module__alert--green {
  background-color: rgb(var(--success-color));
  color: white;
}

/* temp_stylePlugin:client/components/play/match/Match.scss */
.cd-match__popup > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* temp_stylePlugin:client/components/timer/Timer.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-timer {
  justify-content: flex-end;
}
.cd-timer__wrapper {
  box-sizing: border-box;
  min-height: calc(100vh - var(--nav-h));
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}
.cd-timer__wrapper--right,
.cd-timer__wrapper--left {
  padding: 0 10px 10px !important;
  flex-direction: row;
  gap: 15px;
  height: calc(100vh - var(--nav-h));
}
@media (max-width: 1200px) {
  .cd-timer__wrapper--right,
  .cd-timer__wrapper--left {
    flex-direction: column !important;
  }
  .cd-timer__wrapper--right > *:first-child,
  .cd-timer__wrapper--right > *:last-child,
  .cd-timer__wrapper--left > *:first-child,
  .cd-timer__wrapper--left > *:last-child {
    width: 100% !important;
    flex: none !important;
  }
  .cd-timer__wrapper--right > *:last-child,
  .cd-timer__wrapper--left > *:last-child {
    height: 300px !important;
    max-height: 300px !important;
  }
  .cd-timer__wrapper--right .cd-timer__main-center,
  .cd-timer__wrapper--left .cd-timer__main-center {
    padding-top: 20px !important;
  }
}
.cd-timer__wrapper--right > *:first-child,
.cd-timer__wrapper--left > *:first-child {
  flex: 1;
  height: 100%;
  max-height: calc(100vh - var(--nav-h));
}
.cd-timer__wrapper--right > *:last-child,
.cd-timer__wrapper--left > *:last-child {
  width: 350px;
  height: 100%;
  max-height: calc(100vh - var(--nav-h));
}
.cd-timer__wrapper--right .cd-timer__main-center,
.cd-timer__wrapper--left .cd-timer__main-center {
  margin-top: 0;
  padding-top: 80px;
}
.cd-timer__wrapper--left {
  padding: 0 0 10px 10px !important;
}
@media (max-width: 1200px) {
  .cd-timer__wrapper--left {
    flex-direction: column !important;
  }
  .cd-timer__wrapper--left > *:first-child,
  .cd-timer__wrapper--left > *:last-child {
    width: 100% !important;
    flex: none !important;
  }
  .cd-timer__wrapper--left > *:first-child {
    height: 300px !important;
    max-height: 300px !important;
    order: 2 !important;
  }
  .cd-timer__wrapper--left > *:last-child {
    order: 1 !important;
  }
}
.cd-timer__wrapper--left > *:first-child {
  width: 350px;
  height: 100%;
  max-height: calc(100vh - var(--nav-h));
}
.cd-timer__wrapper--left > *:last-child {
  flex: 1;
  height: 100%;
  max-height: calc(100vh - var(--nav-h));
}
.cd-timer--focused.cd-timer--started .cd-timer__time__scramble {
  display: none;
}
.cd-timer--mobile.cd-timer--started .cd-timer__time__scramble {
  display: none;
}
.cd-timer--mobile.cd-timer--started .cd-timer__wrapper {
  grid-template-columns: 1fr !important;
}
.cd-timer {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  background-color: rgb(var(--background-color));
  color: rgb(var(--text-color));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 0 10px 0;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
@supports (height: 100dvh) {
  .cd-timer {
    min-height: calc(100dvh - var(--nav-h));
  }
}
.cd-timer__main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.cd-timer__main-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-timer__main-time--smart {
  width: 95%;
  max-width: 580px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cd-timer__main-time--smart > div {
  width: 50% !important;
}
.cd-timer__main--mobile {
  border-bottom: 3px dashed rgb(var(--theme-background-opposite), 0.3);
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  margin-bottom: 20px;
}
.cd-timer__mobile-footer-toggle {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
.cd-timer__mobile-footer-toggle button {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important;
  padding: 12px 20px !important;
  color: white !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  -webkit-backdrop-filter: blur(10px) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}
.cd-timer__mobile-footer-toggle button:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}
.cd-timer__get-pro {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  display: table;
  margin: 25px auto 6px;
}
.cd-timer__get-pro a {
  display: flex;
  font-size: 1rem;
  padding-bottom: 2px;
  border-bottom: 3px solid rgba(var(--primary-color), 0.6);
  color: rgb(var(--theme-module-opposite));
  flex-direction: row;
  align-items: center;
}
.cd-timer__get-pro a i {
  margin-left: 5px;
}
.cd-timer-notif {
  position: absolute;
  top: 30px;
  transform: translate(0, -100%);
  z-index: 10000;
  opacity: 0;
  animation: fadeIn 0.3s;
  animation-fill-mode: forwards;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
@keyframes fadeIn {
  from {
    top: 30px;
    opacity: 0;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
.cd-timer-notif--out:not(.cd-timer-notif--static) {
  animation: fadeOut 0.3s;
  animation-fill-mode: forwards;
}
@keyframes fadeOut {
  from {
    top: 0;
    opacity: 1;
  }
  to {
    opacity: 0;
    top: 30px;
  }
}
.cd-timer--mobile {
  min-height: calc(100vh - 70px);
}
.cd-timer--mobile .cd-timer__header-control {
  top: 70px;
  padding: 10px !important;
}
@supports (height: 100dvh) {
  .cd-timer--mobile {
    min-height: calc(100dvh - 70px);
  }
}
.cd-timer--mobile .cd-timer__time {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin: 50px 0 0;
  padding-bottom: 3vh;
  border-radius: 5px;
  box-sizing: border-box;
  border: 5px dashed rgb(var(--button-color));
}
.cd-timer--mobile .cd-timer__time h1,
.cd-timer--mobile .cd-timer__time .cd-timer__time__scramble__body textarea[disabled] {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.cd-timer .cd-timer-module {
  overflow: auto;
}
.cd-timer--focused .cd-timer__wrapper {
  grid-template-rows: unset !important;
  grid-template-columns: 1fr !important;
}
.cd-timer--focusedWeb .cd-timer__main-center {
  margin-top: -10vh;
}
.cd-timer__background {
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.7;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}
.cd-timer--started .cd-timer-header-control {
  pointer-events: none;
  opacity: 0.3;
}
.cd-timer--started .cd-timer-bottom-info,
.cd-timer--started .cd-timer-scramble,
.cd-timer--started .cd-timer-footer {
  pointer-events: none;
  opacity: 0.3;
}

/* temp_stylePlugin:client/components/timer/header_control/HeaderControl.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-timer-header-control {
  display: grid;
  flex-direction: row;
  grid-template-columns: 1fr 1fr 1fr;
  transition: opacity 0.2s ease-in-out;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
  top: 0;
  width: 100%;
  z-index: 30;
  position: absolute;
}
.cd-timer-header-control:focus-within {
  z-index: 10000;
}
.cd-timer-header-control > div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.cd-timer-header-control > div > *:not(:last-child) {
  margin-right: 10px;
}
.cd-timer-header-control > div:first-of-type {
  justify-content: flex-start;
}
.cd-timer-header-control > div:last-of-type {
  justify-content: flex-end;
}

/* temp_stylePlugin:client/components/timer/footer/TimerFooter.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-timer-footer {
  height: 100%;
  padding: 0 15px 0;
  box-sizing: border-box;
}
.cd-timer-footer__body {
  height: inherit;
  box-sizing: border-box;
  border-radius: 15px;
  background-color: rgba(var(--module-color), 0.8);
}
.cd-timer-footer__body > * {
  border: 5px solid transparent;
}
.cd-timer-footer__body--mobile {
  grid-gap: 0;
  border-radius: 8px;
  overflow: visible !important;
  height: auto;
  min-height: 150px;
  max-height: 150px;
  padding: 8px;
}
.cd-timer-footer__body--mobile .cd-timer-footer__visual-picker {
  opacity: 1 !important;
  top: -40px;
  left: 0;
}
.cd-timer-footer__body--mobile > * {
  height: auto !important;
  min-height: 180px !important;
  overflow: visible !important;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cd-timer-footer__body--layout-bottom {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  height: 300px;
}
.cd-timer-footer__body--layout-bottom.cd-timer-footer__body--mobile {
  grid-template-columns: 1fr;
  height: auto;
  min-height: 150px;
  max-height: 150px;
  gap: 0;
  overflow-y: auto;
}
.cd-timer-footer__mobile-hide-button {
  width: 100%;
  opacity: 0.9;
  align-items: center;
  height: 40px;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.cd-timer-footer__mobile-hide-button button {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  padding: 8px 16px !important;
  color: white !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
}
.cd-timer-footer__mobile-hide-button button:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-1px) !important;
}
.cd-timer-footer__visual-wrapper {
  padding: 0;
  box-sizing: border-box;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.cd-timer-footer__visual-wrapper:hover .cd-timer-footer__visual-picker {
  opacity: 1 !important;
}
.cd-timer-footer__visual-wrapper--none {
  border: none !important;
}
.cd-timer-footer__visual-wrapper--disabled {
  pointer-events: none;
}
.cd-timer-footer__visual {
  height: 100%;
  padding: 10px;
  position: relative;
  box-sizing: border-box;
}
.cd-timer-footer__visual-picker {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1000;
  transition: opacity 0.1s ease-in-out;
  opacity: 0;
}
.cd-timer-footer--layout-left,
.cd-timer-footer--layout-right {
  padding: 0 0 10px;
  height: 100%;
}
.cd-timer-footer--layout-left .cd-timer-footer__visual-wrapper:nth-child(1),
.cd-timer-footer--layout-right .cd-timer-footer__visual-wrapper:nth-child(1) {
  grid-column: unset !important;
}
.cd-timer-footer--layout-left .cd-timer-footer__body,
.cd-timer-footer--layout-right .cd-timer-footer__body {
  display: grid;
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  height: 100%;
  overflow: hidden;
}
@media (max-height: 900px) {
  .cd-timer-footer--layout-left .cd-timer-footer__body,
  .cd-timer-footer--layout-right .cd-timer-footer__body {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }
  .cd-timer-footer--layout-left .cd-timer-footer__body > div:nth-child(3),
  .cd-timer-footer--layout-right .cd-timer-footer__body > div:nth-child(3) {
    display: none !important;
  }
}
@media (max-height: 650px) {
  .cd-timer-footer--layout-left .cd-timer-footer__body,
  .cd-timer-footer--layout-right .cd-timer-footer__body {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }
  .cd-timer-footer--layout-left .cd-timer-footer__body > div:nth-child(2),
  .cd-timer-footer--layout-right .cd-timer-footer__body > div:nth-child(2) {
    display: none !important;
  }
}

/* temp_stylePlugin:client/components/modules/last_solve/LastSolve.scss */
.cd-last-solve {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
}
.cd-last-solve__top {
  display: flex;
  box-sizing: border-box;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}
.cd-last-solve__time {
  margin-bottom: 15px;
}
.cd-last-solve__time h5,
.cd-last-solve__time h6 {
  color: rgb(var(--text-color));
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
}
.cd-last-solve__time h4 {
  color: rgb(var(--text-color));
  font-size: 2.3rem;
  font-weight: bold;
}
.cd-last-solve__time h6 {
  font-size: 1rem;
}
.cd-last-solve__time--dnf h4 {
  color: rgb(var(--error-color)) !important;
}
.cd-last-solve__time--plusTwo h4 {
  color: rgb(var(--warning-color)) !important;
}
.cd-last-solve__more {
  position: absolute;
  top: 0;
  right: 0;
}
.cd-last-solve__actions {
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.cd-last-solve__actions > * {
  display: flex;
  flex-direction: row;
}
.cd-last-solve__actions > * > *:not(:last-child) {
  margin-right: 5px;
}

/* temp_stylePlugin:client/components/common/horizontal_line/HorizontalLine.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-horizontal-line {
  width: 100%;
  background-color: rgba(var(--theme-background-opposite), 0.25);
  position: relative;
  height: 3px;
  border-radius: 2px;
  margin: 25px 0;
  display: flex;
  opacity: 0.7;
}
.cd-horizontal-line span {
  position: absolute;
  background-color: rgb(var(--text-color));
  color: rgb(var(--button-color));
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0 6px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* temp_stylePlugin:client/components/timer/time_display/TimeDisplay.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-time-display {
  display: flex;
  justify-content: center;
  z-index: 1;
  position: relative;
  flex-direction: column;
  padding: 0;
  width: 100%;
  align-items: center;
}
.cd-time-display h1 {
  font-family: "Roboto Mono", monospace;
  font-size: clamp(3rem, 7vw, 7rem);
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.2);
  color: rgb(var(--text-color));
  font-weight: 500;
  margin: 0 0 10px;
}
@media (max-width: 1200px) {
  .cd-time-display h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
  }
}
@media (max-width: 768px) {
  .cd-time-display h1 {
    font-size: clamp(2rem, 10vw, 4rem);
  }
}
.cd-time-display h3 {
  color: rgb(var(--text-color));
  margin-top: 10px;
  flex-direction: column;
  font-size: 1rem;
  font-weight: normal;
  justify-content: center;
  display: inline;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.2s ease-in-out;
}
.cd-time-display h3 span {
  display: inline;
  border: 2px solid rgb(var(--text-color));
  opacity: 0.8;
  font-weight: 600;
  color: rgb(var(--text-color));
  border-radius: 3px;
  padding: 2px 3px;
  background-color: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  font-size: 0.8rem;
}
.cd-time-display__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-time-display__inspection {
  background-color: rgb(var(--button-color));
  color: rgb(var(--text-color));
  font-size: 0.85rem;
  padding: 4px 10px;
  margin-top: 15px;
  font-weight: 400;
  border: none !important;
  border-radius: 14px;
}
.cd-time-display--orange {
  color: #ef6c00 !important;
}
.cd-time-display--green {
  color: #66bb6a !important;
}
.cd-time-display--grey {
  color: rgb(var(--text-color), 0.6);
}
.cd-time-display--disabled {
  opacity: 0.2;
}
.cd-time-display--focused {
  height: 100vh;
  padding-top: 0 !important;
}

/* temp_stylePlugin:client/components/timer/time_display/manual/Manual.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-manual-time-entry {
  border: 2px solid rgb(var(--button-color));
  background-color: transparent;
  font-size: 4.5rem;
  color: rgb(var(--text-color));
  font-weight: 500;
  width: 95%;
  max-width: 600px;
  box-sizing: border-box;
  margin: 5px auto;
  text-align: center;
  padding: 0 2px;
  border-radius: 8px;
  font-family: "Roboto Mono", monospace;
  transition: all 0.1s ease-in-out;
}
.cd-manual-time-entry:disabled {
  opacity: 0.3;
}
.cd-manual-time-entry--error {
  border: 2px solid rgb(var(--error-color)) !important;
}

/* temp_stylePlugin:client/components/timer/time_display/start_instructions/StartInstructions.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-start-instructions {
  width: 100%;
  text-align: center;
  color: rgba(var(--text-color), 0.5);
  font-size: 0.88rem;
}
.cd-start-instructions span {
  color: inherit;
}

/* temp_stylePlugin:client/components/timer/time_display/timer_scramble/TimerScramble.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-timer-scramble {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  transition: opacity 0.1s ease-in-out;
}
.cd-timer-scramble__body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 5px;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  color: rgb(var(--text-color)) !important;
  font-family: "Roboto Mono", monospace;
  line-height: clamp(1.5rem, 2vw, 2rem);
}
@media (max-width: 1200px) {
  .cd-timer-scramble__body {
    flex-wrap: wrap;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    line-height: clamp(1.2rem, 2.5vw, 1.8rem);
  }
}
@media (max-width: 768px) {
  .cd-timer-scramble__body {
    font-size: clamp(0.8rem, 3vw, 1rem);
    line-height: clamp(1rem, 3.5vw, 1.4rem);
  }
}
.cd-timer-scramble__body textarea {
  -webkit-text-fill-color: rgb(var(--text-color));
  opacity: 1;
  border: 2px solid transparent;
  box-sizing: border-box;
  border-radius: 7px;
  padding: 7px;
  display: table;
  transition: all 0.1s ease-in-out;
  background-color: transparent;
  width: calc(100% - 20px);
  margin: auto;
  min-width: 100px;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.2);
  text-align: center;
  resize: none;
  font-size: inherit;
  color: inherit !important;
  font-family: inherit;
  line-height: inherit;
  z-index: -100;
}
.cd-timer-scramble__body > span {
  color: inherit;
  line-height: inherit;
  font-family: inherit;
  font-size: inherit;
  transition: all 0.1s ease-in-out;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.2);
}
.cd-timer-scramble__body > span:not(:last-of-type) {
  margin-right: 0.8rem;
}
.cd-timer-scramble__body--green {
  color: #66bb6a !important;
}
.cd-timer-scramble__body--red {
  color: #e53935 !important;
}
.cd-timer-scramble__body--orange {
  color: #ef6c00 !important;
}
.cd-timer-scramble__body--smart {
  width: auto;
}
.cd-timer-scramble--edit {
  border: 2px solid rgba(var(--text-color), 0.2) !important;
  z-index: 100 !important;
}
.cd-timer-scramble__actions {
  display: flex;
  flex-direction: row;
  margin-top: 5px;
}
.cd-timer-scramble__actions--focused {
  display: none !important;
}
.cd-timer-scramble__actions > *:not(:last-child) {
  margin-right: 10px;
}

/* temp_stylePlugin:client/components/timer/smart_cube/SmartCube.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-smart-cube {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.cd-smart-cube__cube {
  zoom: 0.4;
  margin-top: -8%;
  margin-bottom: -8%;
}
.cd-smart-cube > div:last-child {
  z-index: 100;
}
.cd-smart-cube__wrapper {
  margin-bottom: 5px;
}
.cd-smart-cube #temp-cube {
  width: 100px;
  height: 100px;
}
.cd-smart-cube__info {
  position: absolute;
  top: 7px;
  right: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-smart-cube__info .cd-common__emblem--small {
  padding: 0 !important;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-content: center;
}
.cd-smart-cube__info > *:not(:last-child) {
  margin-bottom: 10px;
}
.cd-smart-cube__info__dropdown-handle {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  color: rgb(var(--text-color));
  align-items: center;
  font-size: 0.8rem;
  background-color: rgb(var(--button-color));
}
.cd-smart-cube__info__dropdown-handle i {
  margin-top: 3px;
  margin-left: 1px;
}

/* temp_stylePlugin:client/components/timer/smart_cube/battery/Battery.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-smart-battery {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cd-smart-battery__body {
  border: 2px solid rgb(var(--success-color));
  height: 8px;
  border-radius: 3px;
  overflow: hidden;
  width: 18px;
  position: relative;
}
.cd-smart-battery__bar {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(var(--success-color));
}
.cd-smart-battery__tip {
  height: 7px;
  width: 2px;
  background-color: rgb(var(--success-color));
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.cd-smart-battery--orange .cd-smart-battery__body {
  border-color: rgb(var(--warning-color)) !important;
}
.cd-smart-battery--orange .cd-smart-battery__tip,
.cd-smart-battery--orange .cd-smart-battery__bar {
  background-color: rgb(var(--warning-color)) !important;
}
.cd-smart-battery--red .cd-smart-battery__body {
  border-color: rgb(var(--warning-color)) !important;
}
.cd-smart-battery--red .cd-smart-battery__tip,
.cd-smart-battery--red .cd-smart-battery__bar {
  background-color: rgb(var(--warning-color)) !important;
}

/* temp_stylePlugin:client/components/timer/smart_cube/solve_check/SolveCheck.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-smart-cube-solve-check {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
}
.cd-smart-cube-solve-check img {
  width: 100%;
  max-width: 150px;
  margin: 20px 0 30px;
}

/* temp_stylePlugin:client/components/timer/smart_cube/manage_smart_cubes/ManageSmartCubes.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-manage-smart-cubes {
  width: 100%;
}
.cd-manage-smart-cubes__body {
  min-height: 140px;
  width: 100%;
}
.cd-manage-smart-cubes__body > div:not(:last-of-type) {
  border-bottom: 2px solid rgb(var(--button-color));
}

/* temp_stylePlugin:client/components/timer/smart_cube/manage_smart_cubes/smart_manage/SmartManage.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-manage-smart-cube {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px 0;
  width: 100%;
}
.cd-manage-smart-cube h4,
.cd-manage-smart-cube h5 {
  color: rgb(var(--text-color));
  font-weight: 600;
  font-size: 1.1rem;
}
.cd-manage-smart-cube h5 {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 400;
}
.cd-manage-smart-cube p {
  font-size: 1rem;
  color: rgb(var(--text-color));
}

/* temp_stylePlugin:client/components/modules/chat/ChatBox.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-chat-box {
  width: 100%;
  height: 100%;
  position: relative;
  display: grid;
  grid-template-rows: auto min-content;
}
.cd-chat-box__list {
  width: 100%;
  overflow: auto;
  padding: 5px 5px 0;
  box-sizing: border-box;
}
.cd-chat-box__list > *:not(:last-child) {
  margin-bottom: 12px;
}
.cd-chat-box__textbox {
  resize: none;
  width: 100%;
  background-color: rgb(var(--button-color));
  box-sizing: border-box;
  border-radius: 6px;
  padding: 7px;
  overflow: hidden;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: all 0.1s ease-in-out;
  color: rgb(var(--theme-button-opposite));
  opacity: 0.8;
}
.cd-chat-box__textbox--focused {
  opacity: 1;
}
.cd-chat-box__textbox--error {
  border-color: rgb(var(--error-color));
}
.cd-chat-box__wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  box-sizing: border-box;
}

/* temp_stylePlugin:client/components/modules/chat/message/ChatMessage.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-chat-message {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.cd-chat-message__left {
  width: 40px;
}
.cd-chat-message__right {
  width: calc(100% - 40px);
}
.cd-chat-message__right b {
  font-weight: bold;
  margin-bottom: 8px;
  color: rgb(var(--text-color));
  font-size: 0.95rem;
  position: relative;
  top: -2px;
}
.cd-chat-message__right p {
  margin: 0;
  word-break: break-word;
}
.cd-chat-message__right > p:not(:last-of-type) {
  margin-bottom: 3px;
}

/* temp_stylePlugin:client/components/play/match/match_popup/custom_match/CustomMatch.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-custom-match {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.cd-custom-match__play {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px auto 60px;
}
.cd-custom-match__config {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.cd-custom-match__config > * {
  margin: 0 5px 5px 0;
}
.cd-custom-match__link {
  background-color: rgb(var(--button-color));
  border-radius: 5px;
  padding: 9px 13px;
  margin-bottom: 5px;
  box-sizing: border-box;
}
.cd-custom-match__link p {
  color: rgb(var(--theme-button-opposite));
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.cd-custom-match__actions {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}
.cd-custom-match__bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 100%;
  justify-content: space-between;
}

/* temp_stylePlugin:client/components/play/match/match_popup/join_options/JoinOptions.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-match-join-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  margin-top: 20px;
}
.cd-match-join-options__option {
  border-radius: 7px;
  border: 4px solid rgb(var(--button-color));
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  background-color: rgb(var(--module-color));
}
.cd-match-join-options__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgb(var(--text-color));
}
.cd-match-join-options__center i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: inherit;
}
.cd-match-join-options__center h2 {
  font-size: 1.4rem;
  color: rgb(var(--text-color));
}
.cd-match-join-options__center--lobby {
  color: #42a5f5;
}
.cd-match-join-options__center--custom {
  color: #66bb6a;
}

/* temp_stylePlugin:client/components/play/match/match_popup/lobby/Lobby.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-match-join-lobby {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cd-match-join-lobby__body {
  box-sizing: border-box;
  padding: 30px 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgb(var(--text-color));
}
.cd-match-join-lobby__body i {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.cd-match-join-lobby__body p {
  margin-bottom: 20px;
}

/* temp_stylePlugin:client/components/play/match/match_popup/custom_match/custom_match_options/CustomMatchOptions.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-custom-match-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, auto));
  grid-gap: 20px;
}
.cd-custom-match-options__label {
  margin-bottom: 4px;
}
.cd-custom-match-options__option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  border-radius: 4px;
  box-sizing: border-box;
  border: 3px solid rgb(var(--theme-module-opposite), 0.1);
}
.cd-custom-match-options__actions {
  margin-top: 20px;
  width: 100%;
  justify-content: flex-end;
}

/* temp_stylePlugin:client/components/play/match/match_over/MatchOver.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-match-over {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.cd-match-over__header {
  position: absolute;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  background-color: rgba(var(--theme-background), 0.3);
  align-items: center;
  padding: 50px 0;
  flex-direction: column;
}
.cd-match-over__header h3 {
  font-size: 2.6rem;
}
.cd-match-over__header > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cd-match-over__ended-by {
  color: rgb(var(--text-color));
  opacity: 0.8;
  font-size: 1rem;
}
.cd-match-over__sword {
  margin-top: 170px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  position: relative;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: white;
  box-sizing: border-box;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  background-color: rgb(var(--error-color));
}
.cd-match-over--won .cd-match-over__header {
  background-color: rgba(var(--success-color), 0.1) !important;
}
.cd-match-over--won .cd-match-over__sword {
  background-color: rgb(var(--success-color));
}
.cd-match-over--aborted .cd-match-over__header {
  background-color: rgba(var(--theme-background), 0.1) !important;
}
.cd-match-over--aborted .cd-match-over__sword {
  background-color: rgba(var(--button-color)) !important;
}
.cd-match-over__lobby {
  padding: 20px;
  box-sizing: border-box;
}
.cd-match-over__players {
  width: 90%;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 130px;
  grid-gap: 10px;
}
.cd-match-over__players > *:not(:last-child) {
  margin-right: 10px;
}
.cd-match-over__player {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 6px;
}
.cd-match-over__player--won {
  background-color: rgba(var(--success-color), 0.2);
  border-color: rgb(var(--success-color)) !important;
  box-shadow: 0 0 13px rgba(var(--success-color), 0.5);
}
.cd-match-over__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}
.cd-match-over__main-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.cd-match-over__main-actions > *:not(:last-child) {
  margin-right: 15px;
}

/* temp_stylePlugin:client/components/play/match/match_over/elo_change/EloChange.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-elo-change {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 0 5px;
}
.cd-elo-change > span {
  display: table;
}
.cd-elo-change__elo {
  font-size: 2rem;
  margin-bottom: 5px;
  font-weight: bold;
  opacity: 0;
  transition: all 1s ease-in-out;
  color: rgb(var(--text-color));
}
.cd-elo-change__elo--animating {
  transition: all 1s ease-in-out;
  opacity: 1;
}
.cd-elo-change__change {
  opacity: 0.9;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgb(var(--success-color));
}
.cd-elo-change__change--loss {
  color: rgb(var(--warning-color));
}

/* temp_stylePlugin:client/components/play/target/challengers/Challengers.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-timer-challengers {
  width: 100%;
  height: 100%;
  display: grid;
  grid-gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* temp_stylePlugin:client/components/play/target/challengers/challenger/Challenger.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-challenger {
  background-color: rgb(var(--background-color));
  border-radius: 5px;
  width: 100%;
  height: 100%;
  padding: 10px;
  position: relative;
  box-sizing: border-box;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cd-challenger--me {
  border: 3px solid rgba(var(--primary-color), 0.9);
}
.cd-challenger__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.cd-challenger__data {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cd-challenger__points {
  margin-bottom: 3px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cd-challenger__points-val {
  line-height: 1.7rem;
  text-align: center;
  color: rgb(var(--text-color));
  font-weight: bold;
  font-size: 1.7rem;
  margin-bottom: 2px;
}
.cd-challenger__points-label {
  text-align: center;
  color: rgb(var(--text-color));
  font-weight: 900;
  opacity: 0.6;
  font-size: 0.67rem;
}
.cd-challenger__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  padding-top: 5px;
  border-top: 2px solid rgb(var(--theme-button-opposite), 0.07);
}
.cd-challenger__time {
  font-family: Roboto Mono, monospace;
  color: rgb(var(--text-color));
  font-weight: bold;
  font-size: 1.1rem;
  opacity: 0.7;
}
.cd-challenger__time--solving {
  opacity: 1;
  color: rgb(var(--success-color));
}
.cd-challenger--selectable {
  cursor: pointer;
}
.cd-challenger--selected {
  border: 3px solid rgb(var(--info-color));
}
.cd-challenger__user {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cd-challenger__status {
  zoom: 0.7;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cd-challenger__status > * {
  margin: 0 8px 0 0 !important;
}
.cd-challenger--lost {
  opacity: 0.5;
}
.cd-challenger--lost h3 {
  color: rgb(var(--error-color)) !important;
}
.cd-challenger--bad-con {
  opacity: 0.8;
}
.cd-challenger:hover .cd-timer__challengers__op__actions > *:first-child {
  opacity: 1;
}

/* temp_stylePlugin:client/components/play/target/target_sessions/TargetSessions.scss */
.cd-community__sessions__body {
  display: flex;
  flex-direction: column;
}
.cd-community__sessions__body > i {
  color: rgb(var(--text-color));
  font-size: 1.5rem;
  margin: 70px auto 100px;
}
.cd-community__sessions__list {
  max-height: 500px;
  overflow-y: auto;
}

/* temp_stylePlugin:client/components/play/target/target_sessions/target_session/TargetSession.scss */
.cd-community__sessions__session {
  position: relative;
  margin-bottom: 20px;
  border-radius: 4px;
  border: 2px solid rgb(var(--button-color));
  padding: 10px;
  box-sizing: border-box;
}
.cd-community__sessions__session__info {
  display: flex;
  flex-direction: column;
}
.cd-community__sessions__session__info h4 {
  color: rgb(var(--text-color));
  font-size: 1.4rem;
}
.cd-community__sessions__session__info h4 span {
  color: rgb(var(--primary-color));
  font-weight: bold;
  margin-right: 5px;
  display: inline-block;
}
.cd-community__sessions__session__info > span {
  color: rgb(var(--text-color));
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 5px;
}
.cd-community__sessions__session__players {
  margin-top: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cd-community__sessions__session__players__list {
  margin-top: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cd-community__sessions__session__players__list > *:not(:last-child) {
  border-bottom: 1px solid rgb(var(--button-color));
}
.cd-community__sessions__session__players__player {
  width: 100%;
  position: relative;
  padding: 8px 0;
}
.cd-community__sessions__session__players__player__emblems {
  position: absolute;
  top: 10px;
  right: 5px;
}
.cd-community__sessions__session__status {
  margin-top: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cd-community__sessions__session__status .cd-common__input__wrapper,
.cd-community__sessions__session__status input {
  width: 100%;
}
.cd-community__sessions__session__status--video {
  display: flex;
  flex-direction: row;
}
.cd-community__sessions__session__status--verified,
.cd-community__sessions__session__status--review {
  color: rgb(var(--text-color));
  opacity: 0.7;
}
.cd-community__sessions__session__status--verified i,
.cd-community__sessions__session__status--review i {
  margin-left: 3px;
  color: rgb(var(--secondary-color));
}
.cd-community__sessions__session__actions {
  position: absolute;
  top: 10px;
  right: 10px;
}

/* temp_stylePlugin:client/components/play/match/active_players/ActivePlayers.scss */
.cd-match__active-users {
  width: 100%;
  text-align: center;
  margin-top: 4px;
}

/* temp_stylePlugin:client/components/play/target/target_status/TargetStatus.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-game-target-status {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  padding: 15px;
  position: relative;
  box-sizing: border-box;
}
.cd-game-target-status__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-game-target-status h3 {
  color: rgb(var(--text-color));
  font-weight: 600;
  font-size: 1.1rem;
  opacity: 0.8;
  margin-top: 10px;
}
.cd-game-target-status h2 {
  color: rgb(var(--text-color));
  font-weight: bold;
  font-size: 4.5rem;
  margin: 5px 0 0;
}
.cd-game-target-status p {
  color: rgb(var(--text-color));
  opacity: 0.7;
  font-size: 0.9rem;
}
.cd-game-target-status__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}
.cd-game-target-status__retry {
  position: absolute;
  top: 0;
  left: 0;
}
.cd-game-target-status--green {
  color: rgb(var(--success-color)) !important;
}
.cd-game-target-status--red {
  color: rgb(var(--error-color)) !important;
}
.cd-game-target-status__actions {
  position: absolute;
  top: 0;
  right: 0;
}
.cd-game-target-status__alert {
  padding: 4px 14px;
  border-radius: 15px;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 10px;
}
.cd-game-target-status__alert--red {
  background-color: rgb(var(--error-color));
  color: white;
}
.cd-game-target-status__alert--green {
  background-color: rgb(var(--success-color));
  color: white;
}

/* temp_stylePlugin:client/components/solves/Solves.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-solves-list__header {
  margin: 20px 0 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  border: 3px solid rgb(var(--button-color));
  border-radius: 7px;
  padding: 20px;
  box-sizing: border-box;
  justify-content: space-between;
}
.cd-solves-list__header > div {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.cd-solves-list__header-left > * {
  margin-right: 15px;
}
.cd-solves-list__result-count {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}
.cd-solves-list__result-count > span {
  display: table;
  color: rgb(var(--text-color));
  opacity: 0.6;
  width: 100%;
  font-size: 0.9rem;
  text-align: left;
}
.cd-solves-list__body {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-solves-list__sort {
  display: flex;
  flex-direction: column;
}
.cd-solves-list__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cd-solves-list__pagination {
  margin: 20px auto 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cd-solves-list__pagination p {
  margin: 0 20px;
}

/* temp_stylePlugin:client/components/solves/solve_row/SolveListRow.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-solve-list-row {
  background-color: rgb(var(--module-color));
  padding: 20px;
  box-sizing: border-box;
  border-radius: 5px;
  position: relative;
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  cursor: pointer;
}
.cd-solve-list-row__left h4 {
  font-weight: bold;
  font-size: 1.6rem;
  color: rgb(var(--text-color));
}
.cd-solve-list-row__left span {
  display: table;
  opacity: 0.8;
  font-size: 0.9rem;
  color: rgb(var(--text-color));
}
.cd-solve-list-row__time--dnf {
  color: rgb(var(--error-color)) !important;
}
.cd-solve-list-row__time--plusTwo {
  color: rgb(var(--warning-color)) !important;
}
.cd-solve-list-row__center {
  width: 100%;
  display: flex;
  margin-top: -10px;
  justify-content: center;
  align-items: center;
}
.cd-solve-list-row__scramble {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.cd-solve-list-row__badges {
  position: absolute;
  display: flex;
  flex-direction: row;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
}
.cd-solve-list-row__badges > * {
  margin-left: 5px;
}

/* temp_stylePlugin:client/components/profile/Profile.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
}
.cd-profile__wrapper--standalone {
  background-color: rgb(var(--background-color));
  padding: 100px 0 150px;
  min-height: 100vh;
  box-sizing: border-box;
}
.cd-profile__wrapper--standalone > div {
  max-width: 1000px;
  width: 95%;
  margin: auto;
}
.cd-profile--loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
.cd-profile--loading i {
  color: rgb(var(--text-color));
  font-size: 1.8rem;
}
.cd-profile__edit-modal {
  width: 100%;
}
.cd-profile__edit-modal textarea {
  width: 100%;
}
.cd-profile--me .cd-profile__header:hover .cd-profile__name {
  display: none;
}
.cd-profile__header-actions {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 0;
  z-index: 1000;
  right: 0;
  justify-content: flex-end;
  transition: all 0.3s ease;
}
.cd-profile__header-actions > * {
  margin-left: 10px;
}
.cd-profile__header-actions--blurred {
  opacity: 0.1;
  filter: blur(8px);
  pointer-events: none;
}
.cd-profile__header {
  width: 100%;
  height: 300px;
  max-width: 1500px;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  position: relative;
  flex-direction: row;
  margin-bottom: 7px;
  padding: 25px;
}
.cd-profile__background {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  background-color: black;
}
.cd-profile__background img {
  opacity: 0.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cd-profile__pfp {
  display: flex;
  flex-direction: row;
  z-index: 10;
  position: relative;
  align-items: center;
}
.cd-profile__name {
  margin-left: 20px;
  position: relative;
  top: -4px;
}
.cd-profile__name > * {
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.1);
}
.cd-profile__name h2 {
  font-size: 4rem;
  color: rgb(var(--text-color));
  font-weight: bold;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cd-profile__name h2 i {
  display: table;
  color: rgb(var(--info-color));
  margin-left: 15px;
  font-size: 2.5rem;
}
.cd-profile__name h3 {
  font-size: 1.2rem;
  color: rgb(var(--text-color));
  opacity: 0.9;
}
.cd-profile__content {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 1200px;
}
.cd-profile__content > hr {
  margin: 30px auto;
  width: 100%;
  border: none;
  height: 4px;
  background-color: rgb(var(--theme-background-opposite), 0.08);
}
.cd-profile__content > div {
  margin: 35px 0;
}
.cd-profile__records-header {
  margin-bottom: 20px;
}
.cd-profile__records-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgb(var(--border-color));
}
.cd-profile__tab {
  background: none;
  border: none;
  padding: 16px 32px;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(var(--text-color));
  opacity: 0.6;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cd-profile__tab:hover {
  opacity: 0.8;
}
.cd-profile__tab--active {
  opacity: 1;
  border-bottom-color: rgb(var(--primary-color));
}
.cd-profile__wca-logo {
  width: 20px;
  height: 20px;
  opacity: 1;
  vertical-align: middle;
  filter: none;
}
.cd-profile__records-content {
  margin-top: 20px;
}
.cd-profile__no-records {
  text-align: center;
  padding: 40px;
  color: rgb(var(--text-color));
  opacity: 0.6;
}
.cd-profile__no-records p {
  margin: 0;
  font-size: 1.1rem;
}
.cd-profile__pbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, auto));
  grid-gap: 20px;
}
.cd-profile__publish-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}
.cd-profile__publish-buttons--blurred {
  opacity: 0.1;
  filter: blur(8px);
  pointer-events: none;
}

/* temp_stylePlugin:client/components/profile/pb_card/PbCard.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-profile-pb-card {
  display: flex;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgb(var(--module-color));
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cd-profile-pb-card:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.cd-profile-pb-card__actions {
  position: absolute;
  top: 2px;
  left: 10px;
}
.cd-profile-pb-card__time > span:first-of-type {
  color: rgb(var(--text-color));
  font-size: 3rem;
  font-weight: bold;
}
.cd-profile-pb-card__time > span:last-of-type {
  font-size: 0.85rem;
  color: rgb(var(--text-color));
  display: table;
  opacity: 0.7;
  margin-top: 5px;
}
.cd-profile-pb-card__scramble {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cd-profile-pb-card__scramble-visual {
  height: 70px;
  width: 70px;
  margin-bottom: 5px;
}

/* temp_stylePlugin:client/components/profile/pfp/PFP.scss */
.cd-pfp {
  background-color: rgba(238, 238, 238, 0.3);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  align-items: center;
  position: relative;
}
.cd-pfp .cd-common-upload-cover {
  border-radius: 50%;
}

/* temp_stylePlugin:client/components/profile/about/About.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-profile-about {
  position: relative;
}
.cd-profile-about__edit {
  position: absolute;
  top: 0;
  right: 0;
}
.cd-profile-about__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, auto));
  grid-gap: 30px;
  margin-top: 10px;
}
.cd-profile-about__header > *:not(:last-child) {
  margin-bottom: 10px;
}
.cd-profile-about__bio p {
  color: rgb(var(--text-color));
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.7rem;
  margin-top: 10px;
}
.cd-profile-about__bio p i {
  font-style: italic;
}
.cd-profile-about__details {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.cd-profile-about__detail-block {
  padding: 10px;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  background-color: rgb(var(--module-color));
  flex-direction: column;
  align-items: flex-start;
}
.cd-profile-about__detail-block > span {
  display: table;
  margin-top: 5px;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgb(var(--text-color));
}

/* temp_stylePlugin:client/components/profile/elo/ProfileElo.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-profile-elo__elo-block {
  padding: 20px;
  box-sizing: border-box;
  background-color: rgb(var(--module-color));
  border: 4px solid rgb(var(--theme-module-opposite), 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cd-profile-elo__elo-block span {
  color: rgb(var(--text-color));
}
.cd-profile-elo__elo-cubetype {
  background-color: rgb(var(--theme-module-opposite), 0.13);
  font-size: 1rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 7px;
}
.cd-profile-elo__elo-number {
  font-weight: bold;
  font-size: 2.5rem;
  margin: 10px 0 0;
}
.cd-profile-elo__game-count {
  font-weight: 600;
  opacity: 0.7;
  font-size: 0.9rem;
}
.cd-profile-elo__body {
  margin-top: 10px;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(auto, 200px));
}

/* temp_stylePlugin:client/components/profile/publish_wca_records/PublishWcaRecords.scss */
.publish-wca-records .wca-records-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.publish-wca-records .wca-records-header h3 {
  margin: 0;
}
.publish-wca-records .cd-table {
  width: 100%;
  margin-bottom: 1rem;
}
.publish-wca-records .cd-table td {
  vertical-align: middle;
}
.publish-wca-records .cd-table td small {
  display: block;
  color: #666;
  margin-top: 0.25rem;
}
.publish-wca-records .wca-records-footer {
  text-align: center;
  margin-top: 1rem;
}
.publish-wca-records .wca-records-footer p {
  margin-bottom: 1rem;
  color: #666;
}

/* temp_stylePlugin:client/components/profile/wca_pb_card/WcaPbCard.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-profile-wca-pb-card {
  display: flex;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgb(var(--module-color));
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.cd-profile-wca-pb-card__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  padding: 0 10px;
}
.cd-profile-wca-pb-card__event-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgb(var(--text-color));
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.3px;
}
.cd-profile-wca-pb-card__record-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 15px;
}
.cd-profile-wca-pb-card__record-section:not(:last-child) {
  border-right: 1px solid rgb(var(--border-color));
}
.cd-profile-wca-pb-card__record-type {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgb(var(--text-color));
  opacity: 0.7;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cd-profile-wca-pb-card__time-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 5px;
}
.cd-profile-wca-pb-card__time-value {
  color: rgb(var(--text-color));
  font-size: 2.2rem;
  font-weight: bold;
}
.cd-profile-wca-pb-card__no-record {
  color: rgb(var(--text-color));
  font-size: 2.2rem;
  font-weight: bold;
  opacity: 0.3;
}
.cd-profile-wca-pb-card__rank {
  font-size: 0.8rem;
  color: rgb(var(--text-color));
  opacity: 0.7;
}
.cd-profile-wca-pb-card__rank-icon {
  width: 20px;
  height: 20px;
}
.cd-profile-wca-pb-card__rank-icon--gold {
  color: #FFD700;
}
.cd-profile-wca-pb-card__rank-icon--silver {
  color: #C0C0C0;
}
.cd-profile-wca-pb-card__rank-icon--bronze {
  color: #CD7F32;
}
@media (max-width: 768px) {
  .cd-profile-wca-pb-card {
    flex-direction: column;
    gap: 15px;
  }
  .cd-profile-wca-pb-card__record-section {
    border-right: none;
    border-bottom: 1px solid rgb(var(--border-color));
    padding: 10px 0;
  }
  .cd-profile-wca-pb-card__record-section:last-child {
    border-bottom: none;
  }
  .cd-profile-wca-pb-card__time-value,
  .cd-profile-wca-pb-card__no-record {
    font-size: 1.8rem;
  }
}

/* temp_stylePlugin:client/components/admin/Admin.scss */

/* temp_stylePlugin:client/components/solve_page/SolvePage.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-solve-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 100px 0;
  background-color: rgb(var(--background-color));
  box-sizing: border-box;
  align-items: flex-start;
}
.cd-solve-page__body {
  box-sizing: border-box;
  background-color: rgb(var(--module-color));
  padding: 25px 20px;
  border-radius: 6px;
  width: 100%;
  max-width: 600px;
}
.cd-solve-page__body > * {
  width: 100%;
}

/* temp_stylePlugin:client/components/community/friends/Friends.scss */

/* temp_stylePlugin:client/components/common/pagination/Pagination.scss */
.cd-common-pagination {
  width: 100%;
  max-width: 700px;
  margin: 30px auto 50px;
}
.cd-common-pagination__header {
  margin: 40px 0 10px;
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}
.cd-common-pagination__header > * {
  width: 100%;
}
.cd-common-pagination__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-common-pagination__body > span {
  display: table;
  color: rgb(var(--text-color));
  opacity: 0.6;
  width: 100%;
  font-size: 0.9rem;
  text-align: left;
  margin-bottom: 7px;
}
.cd-common-pagination__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cd-common-pagination__pagination {
  margin: 20px auto 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cd-common-pagination__pagination p {
  margin: 0 20px;
}

/* temp_stylePlugin:client/components/trainer/public_custom_trainers/public_trainer/PublicTrainer.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-public-trainer {
  width: 100%;
  background-color: rgb(var(--module-color));
  border: 2px solid rgb(var(--button-color));
  border-radius: 4px;
  margin-bottom: 15px;
  padding: 15px;
  box-sizing: border-box;
  position: relative;
  grid-gap: 10px;
}
.cd-public-trainer p {
  margin-bottom: 0;
}
.cd-public-trainer__cube {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.cd-public-trainer__top {
  display: grid;
  flex-direction: row;
  width: 100%;
  grid-template-columns: 130px 1fr;
}
.cd-public-trainer__info {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid rgb(var(--button-color));
}
.cd-public-trainer__avi {
  margin-top: 10px;
}
.cd-public-trainer__download {
  position: absolute;
  top: 15px;
  right: 15px;
}
.cd-public-trainer__actions {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cd-public-trainer__actions > * {
  margin-right: 10px;
}

/* temp_stylePlugin:client/components/trainer/public_custom_trainers/public_trainer_header/PublicTrainerHeader.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-public-trainer-header {
  width: 100%;
  margin: 0 auto 40px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  background-color: rgb(var(--background-color));
  border: 4px solid rgb(var(--theme-background-opposite), 0.1);
}
.cd-public-trainer-header__center {
  position: absolute;
  left: 30px;
  top: 50%;
  z-index: 10;
  transform: translate(0, -50%);
}
.cd-public-trainer-header__center h3 {
  font-weight: 500;
  margin-top: 5px;
  opacity: 0.8;
  margin-bottom: 10px;
}
.cd-public-trainer-header__back {
  position: absolute;
  z-index: 10;
  top: 20px;
  left: 30px;
}
.cd-public-trainer-header__background {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  z-index: 0;
  opacity: 0.4;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* temp_stylePlugin:client/components/landing/legal/Legal.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-legal {
  width: 95%;
  margin: auto;
  max-width: 700px;
  padding: 200px 0 100px;
  background-color: white;
}
.cd-legal h1 {
  font-weight: bold;
  font-size: 2rem;
  color: #444;
  margin-bottom: 15px;
}
.cd-legal h2 {
  color: #444;
  font-size: 1.3rem;
  margin-top: 20px;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-weight: bold;
}
.cd-legal strong {
  color: #444;
  font-weight: bold;
}
.cd-legal p,
.cd-legal li {
  margin-bottom: 15px;
  line-height: 1.4rem;
  opacity: 0.9;
  color: #444;
}
.cd-legal ul {
  list-style: disc;
  padding-left: 15px;
}
.cd-legal ul li {
  margin-bottom: 10px;
}
.cd-legal a {
  color: #444;
  opacity: 0.8;
  text-decoration: underline;
}

/* temp_stylePlugin:client/components/landing/Landing.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-landing {
  padding-top: 50px;
  background-color: white;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
}
.cd-landing-features {
  width: 100%;
}

/* temp_stylePlugin:client/components/landing/common/landing_nav/LandingNav.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  padding: 14px 0;
  box-sizing: border-box;
  background-color: white;
  transition: all 0.1s ease-in-out;
  border-bottom: 2px solid transparent;
  color: #444;
}
.cd-landing-nav--scrolled {
  border-color: #eee;
}
.cd-landing-nav__logo a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cd-landing-nav__logo img {
  width: 120px;
}
.cd-landing-nav__body {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: calc(100% - 30px);
  color: inherit;
  margin: auto;
  max-width: 1600px;
  justify-content: space-between;
}
.cd-landing-nav__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: inherit;
}
.cd-landing-nav__links > *:not(:first-child) {
  margin-left: 25px;
}
.cd-landing-nav__signup {
  color: #246bfd;
  border-color: rgb(187.6153846154, 209.4615384615, 254.3846153846) !important;
}
.cd-landing-nav__1v1 {
  color: #409444;
  border-color: rgb(153.7735849057, 211.2264150943, 156.5094339623) !important;
}

/* temp_stylePlugin:client/components/account/linked_accounts/LinkedAccounts.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-account-linked-accounts > * {
  max-width: 300px;
  margin-bottom: 25px;
}

/* temp_stylePlugin:client/components/account/linked_accounts/integration_service/IntegrationService.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-integration {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-integration__name {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-integration__name img {
  width: 70px;
  height: auto;
}
.cd-integration__name h4 {
  opacity: 0.9;
  margin-top: 10px;
}
.cd-integration__description {
  opacity: 0.7;
  margin: 5px 0 10px;
}
.cd-integration__actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-integration__actions > *:not(:last-child) {
  margin-bottom: 5px;
}

/* temp_stylePlugin:client/components/admin/reports/Reports.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-admin-report-list {
  width: 100%;
  max-width: 700px;
  margin: auto;
}

/* temp_stylePlugin:client/components/admin/reports/report_summary/ReportSummary.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-admin-report-summary {
  width: 100%;
  margin-bottom: 20px;
  border: 2px solid rgba(var(--theme-module-opposite), 0.2);
  background-color: rgb(var(--module-color));
  padding: 15px;
  box-sizing: border-box;
  border-radius: 3px;
}
.cd-admin-report-summary__rows {
  margin-top: 10px;
}
.cd-admin-report-summary__rows > *:not(:last-child) {
  border-bottom: 2px solid rgba(var(--theme-module-opposite), 0.1);
}
.cd-admin-report-summary__actions {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cd-admin-report-summary__body {
  min-height: 150px;
  width: 100%;
  position: relative;
}
.cd-admin-report-summary__top-info {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cd-admin-report-summary__top-info > * {
  margin-bottom: 6px;
}
.cd-admin-report-summary__report {
  width: 100%;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.cd-admin-report-summary__reason {
  padding: 0;
  margin: 0;
}
.cd-admin-report-summary__reporter {
  font-weight: 600;
  opacity: 0.5;
  color: rgb(var(--text-color));
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
}
.cd-admin-report-summary__reporter:hover {
  border-color: rgb(var(--text-color));
}

/* temp_stylePlugin:client/components/admin/users/AdminUsers.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-admin-users {
  position: relative;
}
.cd-admin-users__body {
  width: 100%;
  display: flex;
  justify-content: center;
}
.cd-admin-users__search {
  margin-top: 20px;
  width: 100%;
  position: relative;
  height: 50px;
}
.cd-admin-users__search input {
  font-size: 1.3rem;
  height: 100%;
  color: rgb(var(--text-color));
  border: none;
  width: 100%;
  font-weight: 300;
  box-sizing: border-box;
  padding: 0 15px;
  border-radius: 6px;
  background-color: rgb(var(--module-color));
}
.cd-admin-users__search i {
  position: absolute;
  top: 50%;
  color: rgb(var(--text-color));
  right: 15px;
  transform: translate(0, -50%);
}
.cd-admin-users__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
}

/* temp_stylePlugin:client/components/unsub/UnsubEmails.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-unsub-emails {
  width: 100%;
  height: 100%;
  display: flex;
}

/* temp_stylePlugin:client/components/common/alert_container/AlertContainer.scss */
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
.cd-alert-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
}
.cd-alert-container__wrapper {
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cd-alert-container__wrapper--fill {
  max-width: none;
  min-height: 100vh;
  width: 100%;
  height: 100%;
}
.cd-alert-container__action {
  margin-top: 15px;
}
.cd-alert-container > i {
  font-size: 2rem;
  margin-bottom: 15px;
}
.cd-alert-container--type-success > i {
  color: rgb(var(--success-color));
}
.cd-alert-container--type-info > i {
  color: rgb(var(--info-color));
}
.cd-alert-container--type-error > i {
  color: rgb(var(--error-color));
}
.cd-alert-container--type-warning > i {
  color: rgb(var(--warning-color));
}
.cd-alert-container__text {
  color: rgb(var(--text-color));
  text-align: center;
}
.cd-alert-container__text p {
  text-align: inherit;
}
.cd-alert-container__text a {
  color: rgb(var(--text-color));
  display: inline;
  text-decoration: underline;
}
.cd-alert-container__header {
  color: rgb(var(--text-color));
  margin: 5px 0 20px;
  font-size: 1.3rem;
}

/* temp_stylePlugin:node_modules/react-toastify/dist/ReactToastify.css */
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient( to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55 );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}
.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}
@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  flex: 1;
}
.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}
.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}
.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}
@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}
.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}
@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}
.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}
@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}
.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}
@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}
.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}
@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}
.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}
@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}
.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}
@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* node_modules/react-color-palette/lib/css/styles.css */
.rcp-light {
  --rcp-background: #ffffff;
  --rcp-input-text: #111111;
  --rcp-input-border: rgba(0, 0, 0, 0.1);
  --rcp-input-label: #717171;
}
.rcp-dark {
  --rcp-background: #181818;
  --rcp-input-text: #f3f3f3;
  --rcp-input-border: rgba(255, 255, 255, 0.1);
  --rcp-input-label: #999999;
}
.rcp {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--rcp-background);
  border-radius: 10px;
}
.rcp-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
}
.rcp-saturation {
  position: relative;
  width: 100%;
  background-image: linear-gradient(transparent, black), linear-gradient(to right, white, transparent);
  border-radius: 10px 10px 0 0;
  user-select: none;
}
.rcp-saturation-cursor {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  transform: translate(-10px, -10px);
}
.rcp-hue {
  position: relative;
  width: 100%;
  height: 12px;
  background-image: linear-gradient(to right, rgb(255, 0, 0), rgb(255, 255, 0), rgb(0, 255, 0), rgb(0, 255, 255), rgb(0, 0, 255), rgb(255, 0, 255), rgb(255, 0, 0));
  border-radius: 10px;
  user-select: none;
}
.rcp-hue-cursor {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px 0.5px;
  box-sizing: border-box;
  transform: translate(-10px, -4px);
}
.rcp-alpha {
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 10px;
  user-select: none;
}
.rcp-alpha-cursor {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px 0.5px;
  box-sizing: border-box;
  transform: translate(-10px, -4px);
}
.rcp-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  width: 100%;
}
.rcp-fields-element {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
}
.hex-element {
  grid-row: 1;
}
.hex-element:nth-child(3n) {
  grid-column: 1 / -1;
}
.rcp-fields-element-input {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: var(--rcp-input-text);
  text-align: center;
  background: none;
  border: 2px solid;
  border-color: var(--rcp-input-border);
  border-radius: 5px;
  box-sizing: border-box;
  outline: none;
  padding: 10px;
}
.rcp-fields-element-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--rcp-input-label);
  text-transform: uppercase;
}

/* temp_stylePlugin:client/styles/index.scss */
*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}
::before,
::after {
  --tw-content: "";
}
html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  line-height: inherit;
}
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp,
pre {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
dialog {
  padding: 0;
}
textarea {
  resize: vertical;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}
button,
[role=button] {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
:root {
  --primary-color:
    36,
    107,
    253;
  --secondary-color:
    65,
    176,
    88;
  --text-color:
    255,
    255,
    255;
  --background-color:
    18,
    20,
    28;
  --button-color:
    30,
    36,
    44;
  --module-color:
    12,
    13,
    23;
  --theme-background:
    0,
    0,
    0;
  --theme-background-opposite:
    255,
    255,
    255;
  --theme-module:
    0,
    0,
    0;
  --theme-module-opposite:
    255,
    255,
    255;
  --theme-primary:
    0,
    0,
    0;
  --theme-primary-opposite:
    255,
    255,
    255;
  --theme-secondary:
    0,
    0,
    0;
  --theme-secondary-opposite:
    0,
    0,
    0;
  --theme-text:
    0,
    0,
    0;
  --theme-text-opposite:
    255,
    255,
    255;
  --theme-button:
    0,
    0,
    0;
  --theme-button-opposite:
    255,
    255,
    255;
  --success-color:
    45,
    189,
    97;
  --error-color:
    226,
    51,
    67;
  --warning-color:
    238,
    106,
    38;
  --info-color:
    66,
    165,
    245;
  --theme-color-opposite:
    255,
    255,
    255;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.-bottom-1 {
  bottom: -0.25rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-3 {
  bottom: 0.75rem;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-4 {
  left: 1rem;
}
.right-0 {
  right: 0px;
}
.right-1\.5 {
  right: 0.375rem;
}
.right-6 {
  right: 1.5rem;
}
.top-0 {
  top: 0px;
}
.top-0\.5 {
  top: 0.125rem;
}
.top-1\/2 {
  top: 50%;
}
.top-16 {
  top: 4rem;
}
.top-4 {
  top: 1rem;
}
.top-5 {
  top: 1.25rem;
}
.top-6 {
  top: 1.5rem;
}
.top-\[45\%\] {
  top: 45%;
}
.top-px {
  top: 1px;
}
.-z-10 {
  z-index: -10;
}
.-z-20 {
  z-index: -20;
}
.z-10 {
  z-index: 10;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[70\] {
  z-index: 70;
}
.m-0 {
  margin: 0px;
}
.m-auto {
  margin: auto;
}
.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-0\.5 {
  height: 0.125rem;
}
.h-1 {
  height: 0.25rem;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-10 {
  height: 2.5rem;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-80 {
  height: 20rem;
}
.h-9 {
  height: 2.25rem;
}
.h-\[500px\] {
  height: 500px;
}
.h-full {
  height: 100%;
}
.max-h-\[85vh\] {
  max-height: 85vh;
}
.max-h-full {
  max-height: 100%;
}
.min-h-\[300px\] {
  min-height: 300px;
}
.min-h-\[320px\] {
  min-height: 320px;
}
.min-h-min {
  min-height: -moz-min-content;
  min-height: min-content;
}
.min-h-screen {
  min-height: 100vh;
}
.w-0\.5 {
  width: 0.125rem;
}
.w-1 {
  width: 0.25rem;
}
.w-1\.5 {
  width: 0.375rem;
}
.w-10 {
  width: 2.5rem;
}
.w-11 {
  width: 2.75rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-60 {
  width: 15rem;
}
.w-8 {
  width: 2rem;
}
.w-9 {
  width: 2.25rem;
}
.w-\[500px\] {
  width: 500px;
}
.w-full {
  width: 100%;
}
.min-w-\[500px\] {
  min-width: 500px;
}
.min-w-fit {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-36 {
  max-width: 9rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-full {
  max-width: 100%;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-screen-xl {
  max-width: 1280px;
}
.max-w-sm {
  max-width: 24rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink {
  flex-shrink: 1;
}
.grow {
  flex-grow: 1;
}
.border-collapse {
  border-collapse: collapse;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-0\.5 {
  --tw-translate-x: 0.125rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-5 {
  --tw-translate-x: 1.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform-none {
  transform: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.resize {
  resize: both;
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}
.grid-rows-\[max-content_1fr\] {
  grid-template-rows: max-content 1fr;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.place-items-center {
  place-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-8 {
  gap: 2rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.divide-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(2px * var(--tw-divide-y-reverse));
}
.divide-solid > :not([hidden]) ~ :not([hidden]) {
  border-style: solid;
}
.divide-button > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgba(var(--button-color), var(--tw-divide-opacity, 1));
}
.self-center {
  align-self: center;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-\[24px\] {
  border-radius: 24px;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-t-3xl {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
.rounded-br-\[24px\] {
  border-bottom-right-radius: 24px;
}
.rounded-tl-\[24px\] {
  border-top-left-radius: 24px;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-b-4 {
  border-bottom-width: 4px;
}
.border-solid {
  border-style: solid;
}
.border-button {
  --tw-border-opacity: 1;
  border-color: rgba(var(--button-color), var(--tw-border-opacity, 1));
}
.border-emerald-400 {
  --tw-border-opacity: 1;
  border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
}
.border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.border-indigo-400 {
  --tw-border-opacity: 1;
  border-color: rgb(129 140 248 / var(--tw-border-opacity, 1));
}
.border-primary\/80 {
  border-color: rgba(var(--primary-color), 0.8);
}
.border-slate-200 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.border-slate-300\/10 {
  border-color: rgb(203 213 225 / 0.1);
}
.border-slate-400\/30 {
  border-color: rgb(148 163 184 / 0.3);
}
.border-slate-500\/50 {
  border-color: rgb(100 116 139 / 0.5);
}
.border-slate-700\/50 {
  border-color: rgb(51 65 85 / 0.5);
}
.border-tmo-background\/10 {
  border-color: rgba(var(--theme-background-opposite), 0.1);
}
.border-tmo-background\/40 {
  border-color: rgba(var(--theme-background-opposite), 0.4);
}
.border-transparent {
  border-color: transparent;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}
.border-white\/5 {
  border-color: rgb(255 255 255 / 0.05);
}
.border-t-transparent {
  border-top-color: transparent;
}
.bg-amber-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
}
.bg-amber-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(180 83 9 / var(--tw-bg-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-blue-100\/80 {
  background-color: rgb(219 234 254 / 0.8);
}
.bg-button {
  --tw-bg-opacity: 1;
  background-color: rgba(var(--button-color), var(--tw-bg-opacity, 1));
}
.bg-cyan-200\/60 {
  background-color: rgb(165 243 252 / 0.6);
}
.bg-error\/90 {
  background-color: rgba(var(--error-color), 0.9);
}
.bg-green-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(134 239 172 / var(--tw-bg-opacity, 1));
}
.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-indigo-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
}
.bg-module {
  --tw-bg-opacity: 1;
  background-color: rgba(var(--module-color), var(--tw-bg-opacity, 1));
}
.bg-module\/80 {
  background-color: rgba(var(--module-color), 0.8);
}
.bg-orange-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.bg-purple-200\/50 {
  background-color: rgb(233 213 255 / 0.5);
}
.bg-slate-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.bg-slate-600\/50 {
  background-color: rgb(71 85 105 / 0.5);
}
.bg-slate-600\/70 {
  background-color: rgb(71 85 105 / 0.7);
}
.bg-slate-700\/50 {
  background-color: rgb(51 65 85 / 0.5);
}
.bg-slate-700\/70 {
  background-color: rgb(51 65 85 / 0.7);
}
.bg-slate-800\/50 {
  background-color: rgb(30 41 59 / 0.5);
}
.bg-slate-800\/70 {
  background-color: rgb(30 41 59 / 0.7);
}
.bg-stone-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(168 162 158 / var(--tw-bg-opacity, 1));
}
.bg-text\/50 {
  background-color: rgba(var(--text-color), 0.5);
}
.bg-tm-module\/10 {
  background-color: rgba(var(--theme-module), 0.1);
}
.bg-tmo-module\/5 {
  background-color: rgba(var(--theme-module-opposite), 0.05);
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}
.bg-white\/70 {
  background-color: rgb(255 255 255 / 0.7);
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-black\/70 {
  --tw-gradient-from: rgb(0 0 0 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-200 {
  --tw-gradient-from: #a5f3fc var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(165 243 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-400 {
  --tw-gradient-from: #34d399 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(52 211 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-500 {
  --tw-gradient-from: #10b981 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-400 {
  --tw-gradient-from: #818cf8 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(129 140 248 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-500 {
  --tw-gradient-from: #6366f1 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(99 102 241 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-500\/70 {
  --tw-gradient-from: rgb(99 102 241 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(99 102 241 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-slate-800\/30 {
  --tw-gradient-from: rgb(30 41 59 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(30 41 59 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-slate-900\/95 {
  --tw-gradient-from: rgb(15 23 42 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(15 23 42 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-transparent {
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-blue-200 {
  --tw-gradient-to: rgb(191 219 254 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:
    var(--tw-gradient-from),
    #bfdbfe var(--tw-gradient-via-position),
    var(--tw-gradient-to);
}
.via-cyan-400 {
  --tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:
    var(--tw-gradient-from),
    #22d3ee var(--tw-gradient-via-position),
    var(--tw-gradient-to);
}
.to-black\/50 {
  --tw-gradient-to: rgb(0 0 0 / 0.5) var(--tw-gradient-to-position);
}
.to-fuchsia-500\/60 {
  --tw-gradient-to: rgb(217 70 239 / 0.6) var(--tw-gradient-to-position);
}
.to-purple-200 {
  --tw-gradient-to: #e9d5ff var(--tw-gradient-to-position);
}
.to-purple-400 {
  --tw-gradient-to: #c084fc var(--tw-gradient-to-position);
}
.to-purple-500 {
  --tw-gradient-to: #a855f7 var(--tw-gradient-to-position);
}
.to-slate-700\/30 {
  --tw-gradient-to: rgb(51 65 85 / 0.3) var(--tw-gradient-to-position);
}
.to-slate-800\/95 {
  --tw-gradient-to: rgb(30 41 59 / 0.95) var(--tw-gradient-to-position);
}
.to-teal-400 {
  --tw-gradient-to: #2dd4bf var(--tw-gradient-to-position);
}
.to-teal-500 {
  --tw-gradient-to: #14b8a6 var(--tw-gradient-to-position);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}
.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-1\.5 {
  padding: 0.375rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-0\.5 {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-40 {
  padding-bottom: 10rem;
}
.pb-7 {
  padding-bottom: 1.75rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-7 {
  padding-top: 1.75rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.font-label {
  font-family: Source Sans Pro, sans-serif;
}
.font-roboto {
  font-family: Roboto, sans-serif;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-\[0\.8rem\] {
  font-size: 0.8rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.text-amber-200 {
  --tw-text-opacity: 1;
  color: rgb(253 230 138 / var(--tw-text-opacity, 1));
}
.text-amber-800 {
  --tw-text-opacity: 1;
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
.text-cyan-200 {
  --tw-text-opacity: 1;
  color: rgb(165 243 252 / var(--tw-text-opacity, 1));
}
.text-error\/80 {
  color: rgba(var(--error-color), 0.8);
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-inherit {
  color: inherit;
}
.text-primary {
  --tw-text-opacity: 1;
  color: rgba(var(--primary-color), var(--tw-text-opacity, 1));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-rose-300 {
  --tw-text-opacity: 1;
  color: rgb(253 164 175 / var(--tw-text-opacity, 1));
}
.text-slate-200 {
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}
.text-slate-300 {
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}
.text-slate-400 {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-slate-600 {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-slate-700 {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.text-stone-800 {
  --tw-text-opacity: 1;
  color: rgb(41 37 36 / var(--tw-text-opacity, 1));
}
.text-text {
  --tw-text-opacity: 1;
  color: rgba(var(--text-color), var(--tw-text-opacity, 1));
}
.text-text\/50 {
  color: rgba(var(--text-color), 0.5);
}
.text-text\/60 {
  color: rgba(var(--text-color), 0.6);
}
.text-text\/70 {
  color: rgba(var(--text-color), 0.7);
}
.text-text\/80 {
  color: rgba(var(--text-color), 0.8);
}
.text-tmo-background {
  --tw-text-opacity: 1;
  color: rgba(var(--theme-background-opposite), var(--tw-text-opacity, 1));
}
.text-transparent {
  color: transparent;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}
.underline {
  text-decoration-line: underline;
}
.opacity-0 {
  opacity: 0;
}
.opacity-10 {
  opacity: 0.1;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-5 {
  opacity: 0.05;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-80 {
  opacity: 0.8;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.shadow-\[0_8px_24px_rgba\(99\,102\,241\,0\.25\)\] {
  --tw-shadow: 0 8px 24px rgba(99,102,241,0.25);
  --tw-shadow-colored: 0 8px 24px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 2px 15px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.shadow-black\/50 {
  --tw-shadow-color: rgb(0 0 0 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-current {
  --tw-shadow-color: currentColor;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-emerald-500\/30 {
  --tw-shadow-color: rgb(16 185 129 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500\/25 {
  --tw-shadow-color: rgb(99 102 241 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-500\/30 {
  --tw-shadow-color: rgb(99 102 241 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-white\/20 {
  --tw-shadow-color: rgb(255 255 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline {
  outline-style: solid;
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:
    var(--tw-ring-offset-shadow),
    var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}
.ring-cyan-400\/20 {
  --tw-ring-color: rgb(34 211 238 / 0.2);
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-2xl {
  --tw-backdrop-blur: blur(40px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-xl {
  --tw-backdrop-blur: blur(24px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-filter {
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property:
    color,
    background-color,
    border-color,
    text-decoration-color,
    fill,
    stroke,
    opacity,
    box-shadow,
    transform,
    filter,
    -webkit-backdrop-filter;
  transition-property:
    color,
    background-color,
    border-color,
    text-decoration-color,
    fill,
    stroke,
    opacity,
    box-shadow,
    transform,
    filter,
    backdrop-filter;
  transition-property:
    color,
    background-color,
    border-color,
    text-decoration-color,
    fill,
    stroke,
    opacity,
    box-shadow,
    transform,
    filter,
    backdrop-filter,
    -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property:
    color,
    background-color,
    border-color,
    text-decoration-color,
    fill,
    stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@font-face {
  font-family: "Kontora";
  font-style: normal;
  font-weight: 100;
  src: url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ Thin.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ Thin.woff) format("woff");
}
@font-face {
  font-family: "Kontora";
  font-style: normal;
  font-weight: 200;
  src: url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ Light.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ Light.woff) format("woff");
}
@font-face {
  font-family: "Kontora";
  font-style: normal;
  font-weight: 300;
  src: url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ Regular.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ Regular.woff) format("woff");
}
@font-face {
  font-family: "Kontora";
  font-style: normal;
  font-weight: 400;
  src: url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ Medium.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ Medium.woff) format("woff");
}
@font-face {
  font-family: "Kontora";
  font-style: normal;
  font-weight: 500;
  src: url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ SemiBold.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ SemiBold.woff) format("woff");
}
@font-face {
  font-family: "Kontora";
  font-style: normal;
  font-weight: 600;
  src: url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ Bold.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ Bold.woff) format("woff");
}
@font-face {
  font-family: "Kontora";
  font-style: normal;
  font-weight: 700;
  src: url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ ExtraBold.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ ExtraBold.woff) format("woff");
}
@font-face {
  font-family: "Kontora";
  font-style: normal;
  font-weight: 800;
  src: url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ Black.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ Black.woff) format("woff");
}
@font-face {
  font-family: "Kontora";
  font-style: normal;
  font-weight: 900;
  src: url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ ExtraBlack.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Kontora/Kontora\ ExtraBlack.woff) format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 100;
  src: url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ Thin.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ Thin.woff) format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 100;
  src: url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion Thin Italic.woff2") format("woff2"), url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion Thin Italic.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 200;
  src: url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ Light.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ Light.woff) format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 200;
  src: url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion Light Italic.woff2") format("woff2"), url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion Light Italic.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 300;
  src: url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ Regular.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ Regular.woff) format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 300;
  src: url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion Regular Italic.woff2") format("woff2"), url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion Regular Italic.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 400;
  src: url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ Medium.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ Medium.woff) format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 400;
  src: url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion Medium Italic.woff2") format("woff2"), url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion Medium Italic.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 500;
  src: url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ SemiBold.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ SemiBold.woff) format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 500;
  src: url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion SemiBold Italic.woff2") format("woff2"), url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion SemiBold Italic.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 600;
  src: url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ Bold.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ Bold.woff) format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 600;
  src: url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion Bold Italic.woff2") format("woff2"), url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion Bold Italic.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 700;
  src: url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ Black.woff2) format("woff2"), url(https://cdn.zkt-timer.io/fonts/Gelion/Gelion\ Black.woff) format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 700;
  src: url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion Black Italic.woff2") format("woff2"), url("https://cdn.zkt-timer.io/fonts/Gelion/Gelion Black Italic.woff") format("woff");
}
:root {
  --link-color:
    36,
    107,
    253;
  --nav-h: 80px;
}
a,
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 500;
  vertical-align: baseline;
  font-family:
    "Helvetica Neue",
    Helvetica,
    Roboto,
    Arial,
    sans-serif;
}
input {
  -webkit-border-radius: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
body,
html {
  height: 100%;
  width: 100%;
  position: relative;
  display: table;
  font-size: 15px;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}
div {
  box-sizing: border-box;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
:focus {
  outline: 0 !important;
}
button {
  cursor: pointer;
  border: 0;
  font-size: 0.9rem;
  padding: 4px 0;
  color: #333;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
}
a {
  text-decoration: none;
  cursor: pointer;
}
textarea,
input,
select {
  font-family:
    Arial,
    "Helvetica Neue",
    Helvetica,
    sans-serif;
  -webkit-appearance: none;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
#confetti-canvas {
  z-index: 1000000;
}
#app {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  min-height: 100%;
}
.ReactTable {
  font-size: 0.9rem;
  border: none;
}
.ReactTable .rt-table {
  overflow: visible !important;
}
.ReactTable .rt-tbody {
  overflow: visible;
}
.ReactTable .rt-tbody > div {
  position: relative;
}
.ReactTable .rt-tbody > div:not(:last-of-type) > div {
  border-bottom: 2px solid rgb(var(--button-color));
}
.ReactTable .rt-tr {
  align-items: center;
  font-family:
    roboto,
    helvetica,
    arial,
    sans-serif;
  position: relative;
  display: flex;
}
.ReactTable .rt-tr .rt-th.-cursor-pointer,
.ReactTable .rt-tr .-sort-asc,
.ReactTable .rt-tr .-sort-desc {
  position: relative;
  cursor: pointer;
  box-shadow: none !important;
}
.ReactTable .rt-tr .rt-th.-cursor-pointer:after,
.ReactTable .rt-tr .-sort-asc:after,
.ReactTable .rt-tr .-sort-desc:after {
  font-size: 1rem;
  position: absolute;
  font-weight: bold;
  right: 30px;
  font-family: FontAwesome;
  top: 29%;
  transform: translate(0, -50%);
}
.ReactTable .rt-tr .rt-th.-cursor-pointer:after {
  content: "\f0dc";
  color: #ddd;
}
.ReactTable .rt-tr .-sort-asc:after {
  content: "\f0d8" !important;
  color: rgb(var(--secondary-color)) !important;
}
.ReactTable .rt-tr .-sort-desc {
  border: none !important;
}
.ReactTable .rt-tr .-sort-desc:after {
  content: "\f0d7" !important;
  color: rgb(var(--secondary-color)) !important;
}
.ReactTable .rt-tr-group {
  border: none !important;
  position: relative;
  z-index: 1;
}
.ReactTable .rt-thead {
  overflow: hidden;
  border-bottom: 3px solid rgb(var(--button-color));
}
.ReactTable .rt-thead .rt-tr {
  padding: 0 !important;
}
.ReactTable .rt-thead .rt-th {
  padding-top: 0 !important;
}
.ReactTable .rt-thead .rt-th:first-of-type {
  box-sizing: border-box !important;
}
.ReactTable .rt-thead.-header {
  box-shadow: none !important;
}
.ReactTable .-pagination {
  font-size: 0.9rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 50px auto 0;
  justify-content: center;
  color: rgb(var(--text-color));
}
.ReactTable .-pagination .-pageInfo {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: inherit;
}
.ReactTable .-pagination .-pageInfo input {
  background-color: rgb(var(--module-color));
  padding: 5px 4px;
  border-radius: 5px;
  text-align: center;
  margin: 0 7px;
  border: none;
  color: rgb(var(--text-color));
  width: 50px;
}
.ReactTable .-pagination .-pageInfo .-totalPages {
  margin-left: 5px;
  color: inherit;
  font-weight: bold;
}
.ReactTable .-pagination .-center {
  margin: 0 40px;
  color: inherit;
}
.ReactTable .-pagination .-next button,
.ReactTable .-pagination .-previous button {
  background-color: rgb(var(--button-color));
  color: white;
  padding: 6px 7px;
  border-radius: 5px;
}
.ReactTable .-loading {
  display: none;
}
.ReactTable .rt-th {
  box-sizing: border-box;
  font-weight: 500 !important;
  font-size: 0.9rem;
  text-align: left;
  color: rgb(var(--text-color));
  border-right: none !important;
  padding: 13px 5px !important;
}
.ReactTable .rt-th div,
.ReactTable .rt-th span {
  font: inherit;
  color: inherit;
}
.ReactTable .rt-th i {
  margin-right: 7px;
}
.ReactTable .-sort-asc,
.ReactTable .-sort-desc {
  color: rgb(var(--secondary-color));
}
.ReactTable .rt-td {
  font-size: 0.87rem;
  padding: 15px 5px;
  color: rgb(var(--text-color));
  font-weight: 500;
  box-sizing: border-box;
  height: 45px;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  border-right: none !important;
}
.ReactTable .rt-td > a {
  text-decoration: underline;
  text-overflow: ellipsis;
}
.ReactTable .rt-td > a:hover {
  color: rgb(var(--secondary-color));
}
.ReactTable .rt-resizable-header-content {
  font-weight: bold;
  color: #333;
  font-size: 0.9rem;
}
h1,
h2,
h3,
h4,
h5 {
  color: rgb(var(--text-color));
  font-weight: 600;
}
h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
h5 {
  font-size: 1rem;
}
p {
  color: rgb(var(--text-color));
  font-weight: 400;
  opacity: 0.9;
  font-size: 1rem;
  line-height: 1.3rem;
  margin-bottom: 15px;
}
.spin {
  animation-name: spin;
  animation-delay: 0s;
  animation-delay: 0;
  animation-direction: normal;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pattern-checks-sm {
  background-image: repeating-linear-gradient(45deg, currentColor 25%, transparent 25%, transparent 75%, currentColor 75%, currentColor), repeating-linear-gradient(45deg, currentColor 25%, transparent 25%, transparent 75%, currentColor 75%, currentColor);
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
}
.pattern-checks-md {
  background-image: repeating-linear-gradient(45deg, currentColor 25%, transparent 25%, transparent 75%, currentColor 75%, currentColor), repeating-linear-gradient(45deg, currentColor 25%, transparent 25%, transparent 75%, currentColor 75%, currentColor);
  background-position: 0 0, 25px 25px;
  background-size: 50px 50px;
}
.pattern-checks-lg {
  background-image: repeating-linear-gradient(45deg, currentColor 25%, transparent 25%, transparent 75%, currentColor 75%, currentColor), repeating-linear-gradient(45deg, currentColor 25%, transparent 25%, transparent 75%, currentColor 75%, currentColor);
  background-position: 0 0, 50px 50px;
  background-size: 100px 100px;
}
.pattern-checks-xl {
  background-image: repeating-linear-gradient(45deg, currentColor 25%, transparent 25%, transparent 75%, currentColor 75%, currentColor), repeating-linear-gradient(45deg, currentColor 25%, transparent 25%, transparent 75%, currentColor 75%, currentColor);
  background-position: 0 0, 100px 100px;
  background-size: 200px 200px;
}
.pattern-grid-sm {
  background-image: linear-gradient(currentColor 1px, transparent 1px), linear-gradient(to right, currentColor 1px, transparent 1px);
  background-size: 10px 10px;
}
.pattern-grid-md {
  background-image: linear-gradient(currentColor 1px, transparent 1px), linear-gradient(to right, currentColor 1px, transparent 1px);
  background-size: 25px 25px;
}
.pattern-grid-lg {
  background-image: linear-gradient(currentColor 1px, transparent 1px), linear-gradient(to right, currentColor 1px, transparent 1px);
  background-size: 50px 50px;
}
.pattern-grid-xl {
  background-image: linear-gradient(currentColor 1px, transparent 1px), linear-gradient(to right, currentColor 1px, transparent 1px);
  background-size: 100px 100px;
}
.pattern-dots-sm {
  background-image: radial-gradient(currentColor 0.5px, transparent 0.5px);
  background-size: 5px 5px;
}
.pattern-dots-md {
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 10px 10px;
}
.pattern-dots-lg {
  background-image: radial-gradient(currentColor 1.5px, transparent 1.5px);
  background-size: 15px 15px;
}
.pattern-dots-xl {
  background-image: radial-gradient(currentColor 2px, transparent 2px);
  background-size: 20px 20px;
}
.pattern-cross-dots-sm {
  background-image: radial-gradient(currentColor 0.5px, transparent 0.5px), radial-gradient(currentColor 0.5px, transparent 0.5px);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
}
.pattern-cross-dots-md {
  background-image: radial-gradient(currentColor 1px, transparent 1px), radial-gradient(currentColor 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}
.pattern-cross-dots-lg {
  background-image: radial-gradient(currentColor 1.5px, transparent 1.5px), radial-gradient(currentColor 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}
.pattern-cross-dots-xl {
  background-image: radial-gradient(currentColor 2px, transparent 2px), radial-gradient(currentColor 2px, transparent 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}
.pattern-vertical-lines-sm {
  background-image: repeating-linear-gradient(to right, currentColor, currentColor 1px, transparent 1px, transparent);
  background-size: 10px 10px;
}
.pattern-horizontal-lines-sm {
  background-image: repeating-linear-gradient(0deg, currentColor, currentColor 1px, transparent 1px, transparent);
  background-size: 10px 10px;
}
.pattern-diagonal-lines-sm {
  background-image: repeating-linear-gradient(45deg, currentColor 0, currentColor 1px, transparent 0, transparent 50%);
  background-size: 10px 10px;
}
.pattern-vertical-lines-md {
  background-image: repeating-linear-gradient(to right, currentColor, currentColor 1px, transparent 1px, transparent);
  background-size: 25px 25px;
}
.pattern-horizontal-lines-md {
  background-image: repeating-linear-gradient(0deg, currentColor, currentColor 1px, transparent 1px, transparent);
  background-size: 25px 25px;
}
.pattern-diagonal-lines-md {
  background-image: repeating-linear-gradient(45deg, currentColor 0, currentColor 1px, transparent 0, transparent 50%);
  background-size: 25px 25px;
}
.pattern-vertical-lines-lg {
  background-image: repeating-linear-gradient(to right, currentColor, currentColor 1px, transparent 1px, transparent);
  background-size: 50px 50px;
}
.pattern-horizontal-lines-lg {
  background-image: repeating-linear-gradient(0deg, currentColor, currentColor 1px, transparent 1px, transparent);
  background-size: 50px 50px;
}
.pattern-diagonal-lines-lg {
  background-image: repeating-linear-gradient(45deg, currentColor 0, currentColor 1px, transparent 0, transparent 50%);
  background-size: 50px 50px;
}
.pattern-vertical-lines-xl {
  background-image: repeating-linear-gradient(to right, currentColor, currentColor 1px, transparent 1px, transparent);
  background-size: 100px 100px;
}
.pattern-horizontal-lines-xl {
  background-image: repeating-linear-gradient(0deg, currentColor, currentColor 1px, transparent 1px, transparent);
  background-size: 100px 100px;
}
.pattern-diagonal-lines-xl {
  background-image: repeating-linear-gradient(45deg, currentColor 0, currentColor 1px, transparent 0, transparent 50%);
  background-size: 100px 100px;
}
.pattern-vertical-stripes-sm {
  background-image: linear-gradient(90deg, transparent 50%, currentColor 50%);
  background-size: 10px 10px;
}
.pattern-horizontal-stripes-sm {
  background-image: linear-gradient(0deg, transparent 50%, currentColor 50%);
  background-size: 10px 10px;
}
.pattern-diagonal-stripes-sm {
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, currentColor 10px, currentColor 20px);
}
.pattern-vertical-stripes-md {
  background-image: linear-gradient(90deg, transparent 50%, currentColor 50%);
  background-size: 25px 25px;
}
.pattern-horizontal-stripes-md {
  background-image: linear-gradient(0deg, transparent 50%, currentColor 50%);
  background-size: 25px 25px;
}
.pattern-diagonal-stripes-md {
  background: repeating-linear-gradient(45deg, transparent, transparent 25px, currentColor 25px, currentColor 50px);
}
.pattern-vertical-stripes-lg {
  background-image: linear-gradient(90deg, transparent 50%, currentColor 50%);
  background-size: 50px 50px;
}
.pattern-horizontal-stripes-lg {
  background-image: linear-gradient(0deg, transparent 50%, currentColor 50%);
  background-size: 50px 50px;
}
.pattern-diagonal-stripes-lg {
  background: repeating-linear-gradient(45deg, transparent, transparent 50px, currentColor 50px, currentColor 100px);
}
.pattern-vertical-stripes-xl {
  background-image: linear-gradient(90deg, transparent 50%, currentColor 50%);
  background-size: 100px 100px;
}
.pattern-horizontal-stripes-xl {
  background-image: linear-gradient(0deg, transparent 50%, currentColor 50%);
  background-size: 100px 100px;
}
.pattern-diagonal-stripes-xl {
  background: repeating-linear-gradient(45deg, transparent, transparent 100px, currentColor 100px, currentColor 200px);
}
.pattern-zigzag-sm {
  background:
    linear-gradient(135deg, currentColor 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, currentColor 25%, transparent 25%) -10px 0,
    linear-gradient(315deg, currentColor 25%, transparent 25%),
    linear-gradient(45deg, currentColor 25%, transparent 25%);
  background-size: 20px 20px;
}
.pattern-zigzag-md {
  background:
    linear-gradient(135deg, currentColor 25%, transparent 25%) -25px 0,
    linear-gradient(225deg, currentColor 25%, transparent 25%) -25px 0,
    linear-gradient(315deg, currentColor 25%, transparent 25%),
    linear-gradient(45deg, currentColor 25%, transparent 25%);
  background-size: 50px 50px;
}
.pattern-zigzag-lg {
  background:
    linear-gradient(135deg, currentColor 25%, transparent 25%) -50px 0,
    linear-gradient(225deg, currentColor 25%, transparent 25%) -50px 0,
    linear-gradient(315deg, currentColor 25%, transparent 25%),
    linear-gradient(45deg, currentColor 25%, transparent 25%);
  background-size: 100px 100px;
}
.pattern-zigzag-xl {
  background:
    linear-gradient(135deg, currentColor 25%, transparent 25%) -100px 0,
    linear-gradient(225deg, currentColor 25%, transparent 25%) -100px 0,
    linear-gradient(315deg, currentColor 25%, transparent 25%),
    linear-gradient(45deg, currentColor 25%, transparent 25%);
  background-size: 200px 200px;
}
.pattern-triangles-sm {
  background-image: linear-gradient(45deg, currentColor 50%, transparent 50%);
  background-size: 10px 10px;
}
.pattern-triangles-md {
  background-image: linear-gradient(45deg, currentColor 50%, transparent 50%);
  background-size: 25px 25px;
}
.pattern-triangles-lg {
  background-image: linear-gradient(45deg, currentColor 50%, transparent 50%);
  background-size: 50px 50px;
}
.pattern-triangles-xl {
  background-image: linear-gradient(45deg, currentColor 50%, transparent 50%);
  background-size: 100px 100px;
}
.text-pattern {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pattern-w-sm {
  width: 10px;
}
.pattern-h-sm {
  height: 10px;
}
.pattern-w-md {
  width: 25px;
}
.pattern-h-md {
  height: 25px;
}
.pattern-w-lg {
  width: 50px;
}
.pattern-h-lg {
  height: 50px;
}
.pattern-w-xl {
  width: 100px;
}
.pattern-h-xl {
  height: 100px;
}
h1 {
  font-size: 3rem;
  font-weight: bold;
  color: rgb(var(--text-color));
}
* {
  transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
}
@media (display-mode: standalone) {
  body {
    overscroll-behavior: none;
  }
}
.hover\:-translate-y-\[1px\]:hover {
  --tw-translate-y: -1px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:rotate-90:hover {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:border-current:hover {
  border-color: currentColor;
}
.hover\:border-slate-400\/50:hover {
  border-color: rgb(148 163 184 / 0.5);
}
.hover\:border-slate-600\/50:hover {
  border-color: rgb(71 85 105 / 0.5);
}
.hover\:bg-slate-500\/50:hover {
  background-color: rgb(100 116 139 / 0.5);
}
.hover\:bg-slate-500\/90:hover {
  background-color: rgb(100 116 139 / 0.9);
}
.hover\:bg-slate-600\/50:hover {
  background-color: rgb(71 85 105 / 0.5);
}
.hover\:bg-slate-600\/70:hover {
  background-color: rgb(71 85 105 / 0.7);
}
.hover\:bg-slate-700\/50:hover {
  background-color: rgb(51 65 85 / 0.5);
}
.hover\:bg-white\/10:hover {
  background-color: rgb(255 255 255 / 0.1);
}
.hover\:text-cyan-300:hover {
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / var(--tw-text-opacity, 1));
}
.hover\:text-slate-50:hover {
  --tw-text-opacity: 1;
  color: rgb(248 250 252 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:opacity-100:hover {
  opacity: 1;
}
.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.hover\:shadow-black\/10:hover {
  --tw-shadow-color: rgb(0 0 0 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-cyan-400\/10:hover {
  --tw-shadow-color: rgb(34 211 238 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:ring-cyan-400\/40:hover {
  --tw-ring-color: rgb(34 211 238 / 0.4);
}
.hover\:brightness-110:hover {
  --tw-brightness: brightness(1.1);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:
    var(--tw-ring-offset-shadow),
    var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-indigo-400\/70:focus {
  --tw-ring-color: rgb(129 140 248 / 0.7);
}
.focus-visible\:ring-2:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:
    var(--tw-ring-offset-shadow),
    var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-indigo-400\/70:focus-visible {
  --tw-ring-color: rgb(129 140 248 / 0.7);
}
.active\:translate-y-0:active {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.active\:brightness-95:active {
  --tw-brightness: brightness(.95);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}
.disabled\:opacity-60:disabled {
  opacity: 0.6;
}
.group:hover .group-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
@media (min-width: 640px) {
  .sm\:p-8 {
    padding: 2rem;
  }
}
