@import url(https://fonts.googleapis.com/css2?family=Silkscreen:wght@400&display=swap);
body.index section.content_wrapper .content form {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 100%;
}
body.index section.content_wrapper .content form h2 {
  margin: 0;
  padding: 0;
}
body.index section.content_wrapper .content form input {
  display: flex;
  flex-flow: column;
  justify-content: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #CCC;
  border-radius: 10px;
  font-size: 22px;
  line-height: 38px;
  padding: 0 10px;
}
body.index section.content_wrapper .content form.error div {
  color: red;
}
body.index section.content_wrapper .content .grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
}
body.index section.content_wrapper .content .grid .widget {
  flex: 0 0 calc(25% - 8px);
  background-color: #a0b9c6;
  border-radius: 6px;
  box-shadow: 2px 2px 10px 0px #333;
  overflow: auto;
  padding: 8px;
  scrollbar-width: thin;
}
body.index section.content_wrapper .content .grid .widget h2 {
  font-size: 20px;
  margin: 0 0 6px;
}
@media (max-width: 1024px) {
  body.index section.content_wrapper .content .grid .widget {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 640px) {
  body.index section.content_wrapper .content .grid .widget {
    flex: 0 0 calc(100% - 8px);
  }
}
body.index section.content_wrapper .content .grid .checkin-widget .table {
  row-gap: 3px;
}
body.index section.content_wrapper .content .grid .checkin-widget .table .row {
  grid-template-columns: 1fr 80px;
}
body.index section.content_wrapper .content .grid .checkin-widget .table .row div:nth-child(2) {
  text-align: right;
}
