@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;600;700;900&display=swap");
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  background: black;
  color: white;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  overflow-y: hidden;
}

@media (max-width: 700px) {
  #dashboard-grid, #dashboard-opening {
    display: block;
  }

  .gadget.no-mobile {
    display: none !important;
  }
}
@media (min-width: 500px) {
  #dashboard-grid, #dashboard-opening {
    display: grid;
    grid-gap: 0;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 33.3%);
    width: 100%;
    height: 100%;
  }
}
.gadget {
  background: linear-gradient(200deg, #2c2c2c 0%, black 100%);
  position: relative;
  padding: 8px;
  border: 1px solid #333333;
  border-bottom: 1px solid #303030;
  clear: both;
}
.gadget ul {
  margin: 0;
  padding: 0;
}
.gadget li {
  list-style: none;
  margin: 0;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.gadget:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.budget table {
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
  border-spacing: 0;
  border-collapse: collapse;
}
.budget td, .budget th {
  padding: 0;
  padding-left: 3px;
  padding-right: 3px;
  margin: 0;
  font-weight: normal;
  text-align: right;
}
.budget th {
  line-height: 100%;
  font-size: 0.8em;
  color: #999999;
}
.budget td {
  font-weight: bold;
}

.gadget.clock > div {
  width: 100%;
  height: 100%;
}

.gadget.clock > div > canvas {
  width: 30vh !important;
  height: 30vh !important;
}

@media (min-width: 500px) {
  .gadget.clock > div > canvas {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
}
.gadget.google-calendar {
  font-size: 2.5vh;
}
.gadget.google-calendar ul {
  margin: 0;
  padding: 0;
}
.gadget.google-calendar li {
  clear: both;
  list-style: none;
  margin: 0;
  padding: 4px;
  height: 1.2em;
  overflow-y: hidden;
}
.gadget.google-calendar li.calendar-Sophie {
  color: #ff9999;
}
.gadget.google-calendar li.calendar-Sam {
  color: #88dd88;
}
.gadget.google-calendar li.calendar-BU {
  color: white;
}
.gadget.google-calendar .google-calendar-summary {
  display: block;
  margin-left: 3.25em;
}
.gadget.google-calendar .google-calendar-countdown {
  float: right;
  padding-right: 4px;
  font-weight: bold;
}
.gadget.google-calendar .google-calendar-time {
  font-weight: bold;
  float: left;
  width: 3em;
  padding-right: 4px;
  text-align: right;
}

@media (min-width: 500px) {
  .gadget.nest > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
}
.gadget.nest .nest-state {
  border-radius: 999px;
  width: 16vh;
  height: 16vh;
  padding: 2vh;
  box-sizing: border-box;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-family: Helvetica;
  background: linear-gradient(to bottom, #515253 0%, #252a2e 100%);
}
.gadget.nest .nest-heating {
  background: red;
}
.gadget.nest .nest-cooling {
  background: linear-gradient(to bottom, #56adf8 0%, #004ce9 100%);
  /* background: #004ce9; */
}
.gadget.nest .nest-state span {
  display: block;
}
.gadget.nest .nest-state-action {
  text-transform: uppercase;
  font-size: 1.5vh;
  height: 1em;
  font-weight: 100;
  margin-bottom: 1vh;
}
.gadget.nest .nest-state-current {
  font-size: 4vh;
}
.gadget.nest .nest-state-target {
  font-weight: 100;
  font-size: 2.5vh;
}

@media (min-width: 500px) {
  .gadget.omnifocus-counter > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
}
.omnifocus-counter h3 {
  font-weight: 100;
  font-size: 2vh;
  display: inline-block;
  width: 70px;
  vertical-align: top;
  margin: 0;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
.omnifocus-counter .omnifocus-counter-group {
  clear: both;
  margin-top: 0.5em;
}
.omnifocus-counter .omnifocus-counter-numbers {
  display: inline-block;
  width: 35%;
  text-align: right;
  float: left;
  margin-right: 20px;
}
.omnifocus-counter .omnifocus-counter-number {
  vertical-align: top;
  display: inline-block;
  background: white;
  color: black;
  padding: 3px;
  padding-top: 1px;
  padding-bottom: 1px;
  line-height: 100%;
  margin-right: 1px;
  border-radius: 3px;
  font-family: "Helvetica";
  font-size: 3vh;
  font-weight: bold;
  border: 1px solid #aaaaaa;
  position: relative;
}
.omnifocus-counter .omnifocus-counter-number .omnifocus-counter-number-divider {
  position: absolute;
  left: 0;
  right: 0;
  top: 44%;
  height: 0;
  background: white;
  display: block;
  border-top: 1px solid #dddddd;
}

.gadget.omnifocus .omnifocus-tag {
  color: #ff8888;
  padding-left: 4px;
  font-style: italic;
}
.gadget.omnifocus .omnifocus-duedate {
  color: #ff88ff;
  padding-left: 6px;
  font-style: italic;
}
.gadget.omnifocus .omnifocus-overdue {
  font-weight: bold;
}

.toggl-graph-bar-container {
  display: block;
  height: 20px;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
  border: 1px solid #aaaaaa;
  border-right: 2px solid white;
  border-radius: 6px;
  background: red;
}
.toggl-graph-bar-container .toggl-graph-bar {
  display: block;
  background: green;
  height: 20px;
  border-radius: 6px;
}

.gadget.status .status-status {
  width: 16px;
  border-radius: 9px;
}
.gadget.status .status-name {
  padding-left: 10px;
}
.gadget.status .status-good .status-status {
  background: green;
}
.gadget.status .status-good {
  color: #77bb77;
}
.gadget.status .status-warning .status-status {
  background: yellow;
}
.gadget.status .status-warning {
  color: yellow;
}
.gadget.status .status-bad .status-status {
  background: red;
}
.gadget.status .status-bad {
  color: #ff7777;
}

.gadget.today .today-date {
  font-size: 15vh;
}
.gadget.today .today-weekday {
  font-size: 3vh;
}
.gadget.today .today-month {
  font-size: 2vh;
}

.gadget.today > div {
  text-align: center;
}

@media (min-width: 500px) {
  .gadget.today > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
}
.weather-current-image {
  width: 70%;
  float: left;
  display: block;
  display: none;
}

.weather-current-temperature {
  display: block;
  font-size: 9vh;
  padding-top: 15px;
  text-align: center;
}

.weather-forecast {
  margin-left: auto;
  margin-right: auto;
  font-size: 2vh;
}
.weather-forecast td {
  text-align: center;
  padding-left: 0.5vh;
  padding-right: 0.5vh;
}
.weather-forecast td img {
  width: 6vh;
}
.weather-forecast .weather-forecast-weekday td {
  text-transform: uppercase;
  color: #666688;
  font-weight: 300;
}
.weather-forecast .weather-forecast-date td {
  font-size: 1.8vh;
}
.weather-forecast .weather-forecast-high td {
  font-size: 2.2vh;
  font-weight: 600;
  color: #ddaaaa;
}
.weather-forecast .weather-forecast-low td {
  font-size: 2.2vh;
  font-weight: 600;
  color: #aaaadd;
}

@media (min-width: 500px) {
  .gadget.signs > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
}
.signs-dot {
  display: inline-block;
  width: 10vh;
  height: 10vh;
  border-radius: 100%;
  margin-right: auto;
  margin-left: auto;
  display: block;
  box-sizing: border-box;
  text-align: center;
  padding-top: 2.5vh;
  font-size: 3vh;
}
.signs-dot.signs-dot-yellow {
  background: yellow;
  color: black;
}
.signs-dot.signs-dot-red {
  background: red;
}
.signs-dot.signs-dot-green {
  background: green;
}

.signs-message {
  margin-top: 1em;
  text-align: center;
  font-size: 2vh;
}

.gadget.signs > div {
  position: relative;
  height: 100%;
  width: 100%;
  margin: -8px;
  padding: 8px;
  box-sizing: border-box;
}

.signs-dot.signs-dot-big {
  position: relative;
  width: 90%;
  height: 0;
  margin-top: 5%;
  padding-bottom: 90%;
}

.signs-message-scrolling {
  display: block;
  height: 4.5vh;
  overflow: hidden;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.signs-message-scrolling .signs-message {
  position: absolute;
  width: auto;
  height: 100%;
  margin: 0;
  line-height: 4vh;
  font-size: 4vh;
  text-align: center;
  animation: scroll-left 10s linear infinite;
  white-space: nowrap;
}
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.gadget.graph > div {
  position: relative;
  box-sizing: border-box;
  height: 95%;
}

@media (max-width: 500px) {
  .gadget.graph > div {
    height: 200px;
  }
}
.gadget.graph .graph-number {
  font-weight: 700;
  font-size: 2.5vh;
  color: #777777;
}
.gadget.graph .graph-label {
  font-size: 2vh;
  text-align: center;
  text-transform: uppercase;
}

/*# sourceMappingURL=main.css.map */
