/* src/styles.scss */
:root {
  --primary-font-color: #7F91A9;
  --dark-font-color: #CAD1DC;
  --gray-font-color: #889dbc;
  --white-font-color: #ffffff;
  --title-font-color: #4B7FB0;
  --primary-bg-color: #23262A;
  --secondary-bg-color: #2b2e30;
  --accent-blue: #2f80ed;
  --accent-blue-hover: #1f6fd6;
  --accent-blue-hover-2: #195fb8;
  --primary-button-color: #2f80ed;
  --secondary-button-border-color: #c7d3e5;
  --link-font-color: #2f80ed;
  --link-font-hover: #1f6fd6;
  --icon-color: #567095;
  --menu-item-hover-color: #f0f4ff;
  --header-icon-active-fill: #2f80ed;
  --header-icon-hover-fill: #e6f0ff;
  --table-border-color: #D8E0EA;
  --table-header-bg-color: #3E5575;
  --border-color: #323A41;
  --text-primary: #1b1d23;
  --text-disabled: #a0a7b5;
  --box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.16);
}
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
input[type=date],
input[type=url],
select,
textarea {
  height: 26px;
  appearance: none;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  padding: 0 6px;
  color: var(--primary-font-color);
  background: var(--primary-bg-color);
  border: var(--border-color) 1px solid;
  border-radius: 4px;
  box-sizing: border-box;
  outline: none;
  width: 100%;
}
input[type=text]:active,
input[type=password]:active,
input[type=email]:active,
input[type=tel]:active,
input[type=number]:active,
input[type=date]:active,
input[type=url]:active,
select:active,
textarea:active {
  border: 1px solid var(--accent-blue);
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
  border: 1px solid var(--accent-blue);
  color: var(--primary-font-color);
}
*::placeholder {
  color: var(--gray-font-color);
}
button,
.icon-button,
.button {
  background: #485561;
  color: #ffffff;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  border: var(--border-color) 1px solid;
  box-sizing: border-box;
  cursor: pointer;
}
button:disabled,
.icon-button:disabled,
.button:disabled {
  cursor: default;
}
button.reset,
.icon-button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  outline: none;
  appearance: none;
  box-sizing: border-box;
  box-shadow: none;
}
.icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #7F91A9;
  width: 24px;
  height: 24px;
}
.icon-button svg {
  display: block;
}
.icon-button-filled {
  background: var(--border-color);
}
.icon-button-size-12 {
  width: 12px;
  height: 12px;
}
.icon-button-size-16 {
  width: 16px;
  height: 16px;
}
.icon-button-size-24 {
  width: 24px;
  height: 24px;
}
table {
  table-layout: fixed;
  width: 100%;
  background: var(--border-color);
  border-collapse: separate;
  border-spacing: 1px;
  border-radius: 4px;
}
thead th {
  padding: 6px 6px;
  background: var(--primary-bg-color);
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
tbody td {
  padding: 2px 6px;
  background: var(--primary-bg-color);
  white-space: nowrap;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.summary-row td {
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: var(--dark-font-color);
}
table thead:first-child tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
table thead:first-child tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
table thead:last-child tr:last-child th:first-child,
table tbody:last-child tr:last-child td:first-child {
  border-bottom-left-radius: 3px;
}
table thead:last-child tr:last-child th:last-child,
table tbody:last-child tr:last-child td:last-child {
  border-bottom-right-radius: 3px;
}
table.no-border {
  background: transparent;
}
table.no-border th {
  padding-top: 0;
  padding-bottom: 0;
}
.bg-red {
  background: #652E30;
}
.bg-yellow {
  background: #544D24;
}
.bg-green {
  background: #2E652E;
}
.bg-black {
  background: #000000;
}
.bg-black td {
  color: #CAD1DC;
}
html,
body,
input,
select,
textarea,
button,
td,
th {
  font-family:
    "Roboto",
    Arial,
    sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
body {
  background: var(--primary-bg-color);
  color: var(--primary-font-color);
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  min-width: 350px;
  min-height: 100dvh;
}
body.alarm {
  background: #ffe6e6;
}
html,
body,
app-root,
app-main {
  height: 100%;
}
a {
  color: var(--accent-blue);
  text-decoration: none;
}
a:hover {
  color: var(--accent-blue-hover);
}
a:active {
  color: var(--accent-blue-hover-2);
}
h1 {
  font-size: 22px;
  line-height: 28px;
}
h2 {
  font-size: 20px;
  line-height: 26px;
}
h3 {
  font-size: 18px;
  line-height: 22px;
}
h4 {
  font-size: 16px;
  line-height: 20px;
}
h5,
h6 {
  font-size: 14px;
  line-height: 18px;
}
.fill-mute {
  fill: var(--gray-font-color);
}
.fill-dark {
  fill: var(--dark-font-color);
}
.fill-link {
  fill: var(--primary-button-color);
}
.fill-mute .fill-stroke {
  fill: none;
  stroke: var(--gray-font-color);
}
.fill-dark .fill-stroke {
  fill: none;
  stroke: var(--dark-font-color);
}
.fill-link .fill-stroke {
  fill: none;
  stroke: var(--primary-button-color);
}
.font10 {
  font-size: 10px;
  line-height: 14px;
}
.font12 {
  font-size: 12px;
  line-height: 16px;
}
.font14 {
  font-size: 14px;
  line-height: 18px;
}
.font18 {
  font-size: 18px;
  line-height: 22px;
}
.font24 {
  font-size: 24px;
  line-height: 28px;
}
.font28 {
  font-size: 28px;
  line-height: 32px;
}
.font32 {
  font-size: 32px;
  line-height: 36px;
}
.font54 {
  font-size: 54px;
  line-height: 50px;
}
.bold100 {
  font-weight: 100;
}
.bold200 {
  font-weight: 200;
}
.bold300 {
  font-weight: 300;
}
.bold400 {
  font-weight: 400;
}
.bold500 {
  font-weight: 500;
}
.bold600 {
  font-weight: 600;
}
.bold700 {
  font-weight: 700;
}
.bold800 {
  font-weight: 800;
}
.bold900 {
  font-weight: 900;
}
.mt4 {
  margin-top: 4px;
}
.mt8 {
  margin-top: 8px;
}
.mt12 {
  margin-top: 12px;
}
.mt16 {
  margin-top: 16px;
}
.ta-right {
  text-align: right;
}
.ta-center {
  text-align: center;
}
.ta-left {
  text-align: left;
}
.pointer {
  cursor: pointer;
}
.empty {
  text-align: center;
  padding: 8px;
  color: var(--gray-font-color);
}
app-svg-icon {
  fill: var(--icon-color);
}

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