.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex .column {
  display: block;
  margin-top: 12px;
}

.flex .column.half {
  -ms-flex-preferred-size: calc((100% / 2) - 6px);
      flex-basis: calc((100% / 2) - 6px);
}

.flex .column.full {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

section {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}

section > h3 {
  background-color: #dddddd;
  padding: 10px;
  margin: 0;
}

section content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #eeeeee;
  padding: 10px;
}

section content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

section content > ul > li {
  margin-bottom: 10px;
}

section content > ul > li:last-child {
  margin-bottom: 0;
}

ul li {
  margin-bottom: 0;
}

#main {
  position: relative;
}

#card_container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  height: 43px;
  background-color: #FFFFFF;
  padding: 12px 10px;
  border: 2px solid #dddddd;
}

#card_container:focus-within {
  outline: 2px solid #bbbbbb;
}

.notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-weight: bold;
  margin-top: 12px;
  margin-bottom: 12px;
}

.notice.error {
  background-color: indianred;
  color: #ffffff;
}

.loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 0;
  border-radius: 0;
  margin: 0;
}

.loader::before {
  content: attr(title);
  position: absolute;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-weight: bold;
  padding: 48px;
}

@media (max-width: 768px) {
  .flex .column.half {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
/*# sourceMappingURL=2021.css.map */