/* src/scss/variables.scss */
/* src/scss/reset.scss */
*,
*:before,
*:after {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  font-family: var(--tech-font-1);
}
html,
body,
app-root {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 320px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
input,
textarea,
button {
  outline: none;
  border: none;
  background: none;
  margin: 0;
  padding: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
dialog {
  border: none;
  padding: 0;
  margin: 0;
  position: static;
  color: #000000;
}
::-webkit-scrollbar {
  width: 0px;
}
:hover::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
  border-right: 1px solid transparent;
}
::-webkit-scrollbar-thumb {
  background: #d1d1d1;
  border-right: 1px solid transparent;
}
::-webkit-scrollbar-thumb:hover {
  background: #868282;
}
svg {
  display: block;
  object-fit: contain;
  width: 50vw;
  max-width: 100%;
  max-height: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* src/scss/mixin.scss */

/* src/scss/keyframes.scss */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}

/* src/styles.scss */
.auth-title {
  font-weight: 700;
  font-size: 2rem;
}
.auth-btn,
.toolbar-btn,
.toolbar-short-menu-btn {
  padding: 7px 14px;
  display: grid;
  place-items: center;
  border-radius: 0.3rem;
  font-style: normal;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
  width: max-content;
  transition: all linear 250ms;
}
.auth-btn::first-letter,
.toolbar-btn::first-letter,
.toolbar-short-menu-btn::first-letter {
  text-transform: uppercase;
}
.auth-btn:not(:disabled),
.toolbar-btn:not(:disabled),
.toolbar-short-menu-btn:not(:disabled) {
  cursor: pointer;
}
.auth-btn:not(:disabled):active,
.toolbar-btn:not(:disabled):active,
.toolbar-short-menu-btn:not(:disabled):active {
  transform: scale(0.9);
}
.tech-ancla {
  width: max-content;
  font-weight: 500;
  font-size: 1rem;
  color: #2645f1;
}
.auth-container {
  border-radius: 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20rem;
  margin: 0.5rem;
  padding: 2rem;
  min-height: 700px;
  gap: 0.4rem;
}
.auth-container__logo {
  aspect-ratio: 16/9;
  width: 10rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.auth-container__logo img,
.auth-container__logo source {
  object-fit: contain;
  width: 100%;
}
.auth-title {
  text-align: center;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
}
.auth-btn {
  border-radius: 0.3rem;
  color: #94a3b8;
  box-shadow: 0 0 0.1rem #94a3b8;
  min-width: 100%;
}
.auth-btn:focus {
  box-shadow: 0 0 0.3rem #94a3b8;
}
.auth-btn:disabled {
  background: #dddddd;
}
.toolbar-btn {
  border-radius: 0.1rem;
  color: #94a3b8;
  aspect-ratio: 1/1;
  width: 1.5rem;
  padding: 0.1rem;
  box-shadow: 0 0 0.1rem #94a3b8;
}
.toolbar-btn:focus {
  box-shadow: 0 0 0.3rem #94a3b8;
}
.toolbar-btn:disabled {
  background: #dddddd;
}
.toolbar-short-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.375rem;
}
.toolbar-short-menu li {
  display: flex;
}
.toolbar-short-menu-btn {
  border-radius: 0.1rem;
  color: #94a3b8;
  aspect-ratio: 1/1;
  width: 1.5rem;
  padding: 0.1rem;
  box-shadow: 0 0 0.1rem #94a3b8;
}
.toolbar-short-menu-btn:focus {
  box-shadow: 0 0 0.3rem #94a3b8;
}
.toolbar-short-menu-btn:disabled {
  background: #dddddd;
}
.toolbar-short-menu-btn.user-online {
  color: var(--tech-user-card-online);
}
.toolbar-short-menu-btn.user-buse {
  color: var(--tech-user-card-buse);
}
.toolbar-short-menu-btn.user-not-visible {
  color: var(--tech-user-card-not-visible);
}
.toolbar-wrpaper-logo {
  display: grid;
  place-content: center;
  filter: drop-shadow(0 0 0.4rem rgba(0, 0, 0, 0.1333333333));
  aspect-ratio: 16/9;
  width: 7rem;
}
.toolbar-wrpaper-logo__logo {
  width: 100%;
  object-fit: contain;
}
.btn--action-table {
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
  width: 2rem;
  border-radius: 3px;
  padding: 0.2rem;
  cursor: pointer;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: all 250ms cubic-bezier(0, 0, 0.2, 1);
}
.btn--action-table:hover {
  color: #2468a0;
  transform: scale(1);
}
.btn--action-table:active {
  transform: scale(0.8);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
