html, body {
  height: 100%;
}

.container {
  margin-left: 24px;
  margin-right: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

.header {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0F488A;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .logo-title {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .logo-title .logo {
  width: 56px;
  height: 56px;
}
.header .logo-title .title {
  margin-left: 4px;
  font-size: 32px;
  color: #0F488A;
  font-family: "Kodchasan", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.header .logo-title .subtitle {
  font-size: 16px;
}
.header .adpc-container {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.header .adpc-container .adpc-title {
  font-size: 14px;
}

.tabs {
  margin-top: 16px;
  height: 97%;
  display: grid;
  grid-template-rows: auto 1fr;
}

.tab {
  border-radius: 10px 10px 0 0;
}

.tab-contents {
  height: 100%;
}

.tab-container {
  padding: 16px 16px 0 16px;
  border: 1px solid #c4c4c4;
  border-radius: 0px 0px 10px 10px;
  background-color: #e9e9e9;
  height: 100%;
}
.tab-container .row2-container {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}
.tab-container .row3-container {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
}
.tab-container .row4-container {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
}

.jtabs .jtabs-headers > div:not(.jtabs-border) {
  background-color: #78acd0 !important;
  color: #fff !important;
}
.jtabs .jtabs-headers > div.jtabs-selected {
  background-color: #2589d0 !important;
  color: #FFF !important;
}

.spread-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.spread-container .jexcel_container {
  width: 100%;
}

.badge-upload-notice {
  text-align: left;
  margin-top: 8px;
  font-size: 12px;
  line-height: 12px;
}

.info-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.info-container .calendar-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 4px;
       column-gap: 4px;
  margin-top: 8px;
}
.info-container .calendar-container .uploadCaledar {
  width: 8em;
  border: 1px solid #666666;
  border-radius: 4px;
  padding: 4px 8px;
}
.info-container .counter-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 4px;
       column-gap: 4px;
  margin-top: 8px;
}

.badgeUploadSpreadsheet {
  margin-top: 8px;
  height: 100%;
}

.badge-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.nameCollectSpreadsheet {
  margin-top: 8px;
  height: 100%;
}

.badge-summary-notice {
  text-align: left;
  margin-top: 8px;
  font-size: 12px;
  line-height: 12px;
}

.badge-summary-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 16px;
  gap: 8px;
}
.badge-summary-nav .monthSelectorDropDown {
  width: 8em;
}
.badge-summary-nav .sortSelectorDropDown {
  width: 12em;
}

.jdropdown {
  border-radius: 4px;
}

.jdropdown-header {
  padding-left: 8px;
  padding-bottom: 4px;
}

.badgeSummarySpreadsheet {
  margin-top: 8px;
  height: 100%;
}

.footer {
  margin-top: 16px;
  padding-top: 16px;
  padding-bottom: 24px;
  border-top: 2px solid #0F488A;
}
.footer .footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  flex-wrap: wrap;
  row-gap: 8px;
}
.footer .footer-nav .footer-nav-item {
  padding-right: 8px;
  padding-left: 8px;
  color: #4b4b4b;
  border-right: #0F488A 1px solid;
}
.footer .footer-nav .footer-nav-item:last-child {
  border-right: none;
}
.footer .footer-nav .footer-nav-item img {
  width: 14px;
  height: 14px;
}
.footer .footer-nav .img-center {
  height: 100%;
  display: flex;
  align-items: center;
}
.footer .footer-notice {
  margin-top: 8px;
  margin-left: 8px;
  font-size: 12px;
}

.jnotification-name {
  text-transform: none !important;
}

@media screen and (max-width: 450px) {
  .button-middle {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }
  .button-middle img {
    width: 16px;
    height: 16px;
  }
  .container {
    margin-left: 8px;
    margin-right: 8px;
  }
  .header {
    padding-top: 8px;
    padding-bottom: 0;
    border-bottom-width: 1px;
  }
  .header .logo-title .logo {
    width: 32px;
    height: 32px;
  }
  .header .logo-title .title {
    font-size: 20px;
  }
  .header .adpc-container {
    display: none;
  }
  .jtabs .jtabs-controls {
    min-width: 0px !important;
    display: none !important;
  }
  .jtabs .jtabs-headers > div:not(.jtabs-border) {
    font-size: 15px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .info-container {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
  .badge-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    row-gap: 8px;
  }
  .badge-nav .button-middle {
    width: 100%;
  }
  .footer {
    margin-top: 12px;
    font-size: 14px;
  }
  .footer .footer-notice {
    margin-top: 8px;
    margin-left: 8px;
    font-size: 10px;
  }
}/*# sourceMappingURL=badge.css.map */