:root {
  --primary_blue: #21366c;
  --primary_gray: #bbbbbb;
  --primary_very_light_gray: #eee;
  --primary_white: #fff;
  --primary_blue_secondary: #586892;
  --primary_success_colour: rgb(237, 247, 237);
  --primary_green_dark: #5eba7d
; }

.layout__flex {
  display: flex; }

.layout__flex_column {
  display: flex;
  flex-direction: column; }

.layout__flex_space_between {
  display: flex;
  justify-content: space-between; }

.layout__flex_container_center {
  justify-content: center; }

.layout__flex_container_vertical_center {
  align-items: center; }

.layout__flex_container_bottom {
  justify-content: flex-end; }

.layout__align_right {
  text-align: right; }

.layout__align_center {
  text-align: center; }

.layout__inline_block {
  display: inline-block; }

.layout__inline_flex {
  display: inline-flex; }

/* Checkbox */
.html__checkbox-container {
  cursor: pointer;
  display: block;
  margin-bottom: 2.2rem;
  padding-left: 1.1rem;
  margin-left: 1.1rem;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.html__checkbox-container input {
  cursor: pointer;
  height: 0;
  opacity: 0;
  position: absolute;
  width: 0; }

.html__checkmark {
  background-color: #eee;
  border: 1px solid #bbbbbb;
  border-radius: 0.1rem;
  height: 1.1rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 1.1rem; }

.html__checkbox-container:hover input ~ .html__checkmark {
  background-color: #ccc;
  transition: background-color 200ms linear; }

.html__checkbox-container input:checked ~ .html__checkmark {
  background-color: #0071ef;
  transition: background-color 200ms linear; }

.html__checkmark::after {
  content: '';
  display: none;
  position: absolute; }

.html__checkbox-container .html__checkmark::after {
  border: solid white;
  border-width: 0 1.5px 1.5px 0;
  height: 10px;
  left: 4.5px;
  top: 1px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 5px; }

.html__checkbox-container input:checked ~ .html__checkmark::after {
  display: block; }

.icon--xsmall {
  height: 0.8rem;
  width: 0.8rem; }

.icon--small {
  height: 1rem;
  width: 1rem; }

.icon--medium {
  height: 1.5rem;
  width: 1.5rem; }

.icon--large {
  height: 2rem;
  width: 2rem; }

.icon-logo {
  background: url("../images/icons/power_sensor.svg") no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block; }

.chevron::before {
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: '';
  display: inline-block;
  height: 0.45em;
  left: 0.15em;
  position: relative;
  top: 0.15em;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 0.45em;
  margin: 0px 10px;
  cursor: pointer; }

.chevron.bottom:before {
  top: 0;
  transform: rotate(135deg); }

.chevron.left:before {
  left: 0.25em;
  transform: rotate(-135deg); }

.animation__table_effect, table tbody tr {
  background-color: white;
  transition: 200ms background-color ease-in-out; }
  .animation__table_effect:hover, table tbody tr:hover {
    background-color: #eee;
    transition: 200ms background-color ease-in-out; }

@-webkit-keyframes slide-top {
  0% {
    opacity: 0;
    transform: translateY(-50px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes slide-top {
  0% {
    opacity: 0;
    transform: translateY(-50px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes slide-right {
  0% {
    opacity: 0;
    transform: scaleY(1);
    transform: translateX(-50px); }
  100% {
    opacity: 1;
    transform: scaleY(0);
    transform: translateX(0); } }

@keyframes slide-left {
  0% {
    opacity: 0;
    transform: scaleY(1);
    transform: translateX(50px); }
  100% {
    opacity: 1;
    transform: scaleY(0);
    transform: translateX(0); } }

.animation__slide_left {
  animation: slide-left 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }

.animation__slide_right {
  animation: slide-right 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }

.animation__slide_top {
  animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }

@keyframes fadein_animate__animation__half_opacity {
  0% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

.animation__half_opacity {
  animation: fadein_animate__animation__half_opacity 500ms ease-in-out; }

.typography__white {
  color: #fff; }

.typography__body_text_color, body {
  color: #636363; }

.typography__primary_blue {
  color: #21366c; }

.typography__less_contract_font {
  color: #bbbbbb; }

.typography__header_1 {
  font-size: 4rem; }

.typography__header_2 {
  font-size: 2rem; }

.typography__header_3 {
  font-size: 1.6rem; }

.typography__body {
  font-size: 1rem; }

.typography__header_5 {
  font-size: 0.8rem; }

.typography__heavy {
  font-weight: 800; }

.typography__medium {
  font-weight: 600; }

html,
body {
  padding: 0px; }

* {
  box-sizing: border-box; }

body {
  margin: 0;
  font-size: 1rem;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif; }

a {
  color: #172a5a;
  outline: none;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out; }

a:hover {
  color: #44c400;
  -webkit-transition: color 0.2s ease-in;
  -moz-transition: color 0.2s ease-in;
  -o-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in; }

a:focus {
  color: #44c400; }

label {
  display: block; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  box-sizing: border-box; }

input[type='text'],
input[type='password'],
input[type='number'],
textarea {
  padding: 10px;
  outline: none;
  width: 100%;
  border-radius: 5px;
  border: 2px solid #eee;
  /* TODO: extract color */
  color: #172a5a;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  -webkit-transition: border 0.2s ease-out;
  -moz-transition: border 0.2s ease-out;
  -o-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out; }

input[type='text']:focus,
input[type='password']:focus,
input[type='number']:focus,
textarea:focus {
  outline: none;
  /* TODO: extract color */
  border: 2px solid #172a5a;
  background-color: #f1f5ff;
  -webkit-transition: background-color 0.2s ease-in;
  -moz-transition: background-color 0.2s ease-in;
  -o-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
  -webkit-transition: border 0.2s ease-in;
  -moz-transition: border 0.2s ease-in;
  -o-transition: border 0.2s ease-in;
  transition: border 0.2s ease-in; }

button {
  display: inline-block;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 18px 8px 18px;
  outline: none;
  background-color: #172a5a;
  cursor: pointer;
  border-bottom: 2px solid #172a5a;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out; }

button:disabled {
  background-color: #ccc;
  cursor: not-allowed; }

button:not(:disabled):active {
  background-color: #44c400; }

button:focus {
  -webkit-transition: border-bottom 0.2s ease-in;
  -moz-transition: border-bottom 0.2s ease-in;
  -o-transition: border-bottom 0.2s ease-in;
  transition: border-bottom 0.2s ease-in;
  border-bottom: 2px solid #44c400; }

button:not(:disabled):hover {
  background-color: #44c400;
  -webkit-transition: background-color 0.2s ease-in;
  -moz-transition: background-color 0.2s ease-in;
  -o-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
  border-bottom: 2px solid #000; }

button.outline {
  color: #172a5a;
  border: 2px solid #172a5a;
  background-color: #fff;
  -webkit-transition: border 0.2s ease-out;
  -moz-transition: border 0.2s ease-out;
  -o-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out; }

button.outline:disabled {
  background-color: #f1f5ff; }

button.outline:not(:disabled):active {
  border: 2px solid #44c400; }

button.outline:focus {
  background-color: #fff;
  -webkit-transition: border 0.2s ease-in;
  -moz-transition: border 0.2s ease-in;
  -o-transition: border 0.2s ease-in;
  transition: border 0.2s ease-in;
  border: 2px solid #44c400; }

button.outline:hover {
  border: 2px solid #44c400;
  -webkit-transition: border 0.2s ease-in;
  -moz-transition: border 0.2s ease-in;
  -o-transition: border 0.2s ease-in;
  transition: border 0.2s ease-in; }

a.btn.outline {
  display: inline-block;
  border-radius: 5px;
  padding: 8px 18px 8px 18px;
  outline: none;
  cursor: pointer;
  color: #172a5a;
  border: 2px solid #172a5a;
  background-color: #fff;
  -webkit-transition: border 0.2s ease-out;
  -moz-transition: border 0.2s ease-out;
  -o-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out; }

a.btn.outline:disabled {
  background-color: #f1f5ff; }

a.btn.outline:not(:disabled):active {
  border: 2px solid #44c400; }

a.btn.outline:focus {
  background-color: #fff;
  -webkit-transition: border 0.2s ease-in;
  -moz-transition: border 0.2s ease-in;
  -o-transition: border 0.2s ease-in;
  transition: border 0.2s ease-in;
  border: 2px solid #44c400; }

a.btn.outline:hover {
  border: 2px solid #44c400;
  -webkit-transition: border 0.2s ease-in;
  -moz-transition: border 0.2s ease-in;
  -o-transition: border 0.2s ease-in;
  transition: border 0.2s ease-in; }

.pagination {
  margin: 15px 0 15px 0; }

.pagination > a.btn {
  padding: 4px 9px 4px 9px;
  font-size: 12px;
  border-radius: 0; }

.pagination > a.btn:first-child {
  border-radius: 5px 0 0 5px; }

.pagination > a.btn:last-child {
  border-radius: 0 5px 5px 0; }

.right {
  float: right; }

.left {
  float: left; }

table {
  border-collapse: collapse; }
  table tbody tr {
    cursor: pointer; }
  table tr {
    height: 4rem; }

.tableThead > tr > th {
  color: #bbbbbb;
  text-align: left;
  padding: 10px 6px 10px 6px;
  border-bottom: 1px solid #eee; }

.tableTbody > tr > td {
  padding: 10px 6px 10px 6px;
  border-bottom: 1px solid #eee; }

.pointer {
  cursor: pointer; }

h1,
h2,
h3,
h4,
h5,
h6,
label {
  font-weight: bold;
  color: #172a5a; }

label {
  margin: 10px 0 10px 0; }

.centered {
  position: relative;
  left: 50%;
  margin: -100px 0 0 -400px; }

.box {
  width: 800px;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  background: #fff; }

@media screen and (max-width: 840px) {
  .centered {
    position: relative;
    left: 50%;
    margin: -100px 0 0 -45%; }
  .box {
    width: 90%; } }

/* Icons */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../font/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(../font/MaterialIcons-Regular.woff2) format("woff2"), url(../font/MaterialIcons-Regular.woff) format("woff"), url(../font/MaterialIcons-Regular.ttf) format("truetype"); }

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga'; }

.common__button_hover_background_effect {
  background-color: #fff;
  border: 1px solid #21366c;
  padding: 0.8rem;
  color: #21366c;
  border-radius: .5rem;
  transition: 300ms background-color ease-in-out, 300ms border ease-in-out, 300ms color ease-in-out; }
  .common__button_hover_background_effect:hover {
    color: #fff;
    border-color: #44c400;
    background-color: #44c400;
    transition: 300ms background-color ease-in-out, 300ms background-color ease-in-out, 300ms color ease-in-out; }

main {
  height: 100vh;
  display: flex;
  flex-direction: column; }

[data-svelte-dialog-overlay] {
  z-index: 9999; }
  [data-svelte-dialog-overlay] [data-svelte-dialog-content] {
    border-radius: 8px; }

.toolbar__header {
  height: 12em;
  background-color: #21366c; }

.toolbar__date_filter {
  margin-bottom: 1rem;
  margin-right: 1rem; }

.toolbar__button_group > button {
  width: 8rem;
  height: 2.8rem; }

.toolbar__button_group .toolbar__group_button_selected {
  background-color: #586892; }

.toolbar__button_layout button {
  border-radius: 0; }

.toolbar__button_layout > button:first-child {
  border-radius: 0.5rem 0 0 0.5rem; }

.toolbar__button_layout > button:last-child {
  border-radius: 0 0.5rem 0.5rem 0; }

.utils__vertical_separator {
  border-left: 1px solid #21366c;
  min-width: 1rem; }

.utils__margin__top_large {
  margin-top: 2rem; }

.utils__margin__bottom_large {
  margin-bottom: 2rem; }

.utils__margin__left_large {
  margin-left: 2rem; }

.utils__full_screen_modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  opacity: 0.5;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: opacity 200ms ease-in-out; }

.utils__arrow, .utils__arrow_left, .utils__arrow_right {
  display: inline-block;
  border-width: 0.2rem 0 0 0.2rem;
  border-style: solid;
  border-color: white;
  width: 0.8rem;
  height: 0.8rem; }

.utils__arrow_left {
  transform: rotate(-45deg); }

.utils__arrow_right {
  transform: rotate(135deg); }

.utils__pointer {
  cursor: pointer; }

.utils__uppercase {
  text-transform: uppercase; }

.infobox-wrapper {
  cursor: pointer; }

.infobox-additional-info-wrapper {
  display: flex; }

.infobox-hr {
  border: 1px dashed grey;
  width: 95%;
  height: 0px;
  margin: auto; }

.infobox-expand-hide {
  display: none; }
