body {
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.fixed-top ~ main {
  padding-top: 56px;
}

.header {
  padding-top: 10px;
  height: 100px;
  background-color: #1c3d6c;
}
.header #logo-lb,
.header #logo-ls {
  margin-top: 5px;
}
.header #logo-rb,
.header #logo-rs {
  margin-top: 10px;
}
@media (width <= 767px) {
  .header #logo-lb,
  .header #logo-rb {
    display: none;
  }
}
@media (width >= 768px) {
  .header #logo-ls,
  .header #logo-rs {
    display: none;
  }
}

hr {
  background-image: linear-gradient(to right, white, #c5911f, white);
  border: 0;
  height: 3px;
}

footer {
  border-bottom: 5px solid #c5911f;
  border-top: 5px solid #c5911f;
  font-size: 0.7em;
}

iframe.map {
  display: block;
  height: 350px;
  margin: 0 auto;
  width: 80%;
}

input.form-control[type=text] {
  font-family: Consolas, "Liberation Mono", Monaco, "Lucida Console", monospace;
}

input.is-bordered {
  border: 1px solid #a7a7a7 !important;
  border-radius: 3px !important;
  padding-left: 0.5rem !important;
}
input.is-bordered:disabled {
  background-color: #e9ecef;
}
input.is-account {
  max-width: 180px !important;
}

.anchor {
  display: block;
  position: relative;
  top: -60px;
  visibility: hidden;
}

svg {
  vertical-align: text-top;
}

.icon {
  display: inline-block;
  width: auto;
}

.icon-s {
  height: 1em;
}

.icon-l {
  height: 1.5em;
}

.icon-white {
  fill: white;
}

.icon-primary {
  fill: #1c3d6c;
}

.table-tiny * th,
.table-tiny * td {
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
  font-size: 1rem;
}

.btn-medium {
  font-size: 0.75rem;
  padding: 0.5rem 1.6rem;
}

.is-warning-light {
  background-color: #ffedbd;
  color: #523c0b;
}
.is-warning-light a {
  color: currentcolor;
  text-decoration: underline;
}

.pdf-view {
  width: 100%;
  height: 1150px;
}

#survey_banner {
  background-image: url("/static/banner/ig_survey_banner.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 230px;
}
@media (width <= 992px) {
  #survey_banner {
    height: 180px;
  }
}
@media (width <= 768px) {
  #survey_banner {
    height: 150px;
  }
}

[type=checkbox],
[type=radio] {
  all: revert;
}

[type=checkbox] + label,
[type=radio] + label {
  padding-left: revert;
}

[type=radio] + label::after,
[type=radio] + label::before,
[type=checkbox] + label::after,
[type=checkbox] + label::before {
  all: revert;
}

textarea {
  height: revert;
}

.list-group-item {
  color: #1c3d6c;
}
.list-group-item:hover {
  background-color: #1c3d6c;
  color: white;
}

.sticky-thead {
  position: sticky;
  top: 56px;
  z-index: 1010;
  background: #1c3d6c;
}