/*
  Sections
*/
.section {
  position: relative;
  border: 1px solid grey;
  width: 100%;
  margin: 10px 0px;
  padding: 10px 0px;
  box-shadow: 1px 1px #555;
}
.section-center-400 {
  max-width: 400px;
  margin: 0px auto;
}
.section-center-600 {
  max-width: 600px;
  margin: 0px auto;
}
.section-center-800 {
  max-width: 800px;
  margin: 0px auto;
}
.section-center-1000 {
  max-width: 1000px;
  margin: 0px auto;
}
.section-split {
  position: relative;
  border: 1px solid grey;
  width: 100%;
  margin: 10px 0px;
  padding: 10px 0px;
  box-shadow: 1px 1px #555;
  display: flex;
  flex-direction: row;
}
.section-split-col {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 0;
}
.section-split-bar {
  border-left: 1px solid #AAA;
  width: 1px;
  padding-right: 1px;
  background-color: #555;
}
@media (max-width: 1200px) {
  .section-split {
    flex-direction: column;
  }
  .section-split-bar {
    width: unset;
    height: 1px;
    padding-right: 0px;
    padding-bottom: 1px;
    border-left: none;
    border-bottom: 1px solid #AAA;
  }
}
.section-block {
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #AAA;
  border-image: linear-gradient(90deg, #0000 1%, #555, #0000 99%) 1;
}
.section-block-dropdown {
  border-top: 1px solid #AAA;
  border-image: linear-gradient(90deg, #0000 1%, #555, #0000 99%) 1;
  padding: 10px 5px;
}
.section-block-grey {
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #AAA;
  border-image: linear-gradient(90deg, #0000 1%, #555, #0000 99%) 1;
  background-color: #EEE;
}
.section-block-nobar {
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.section-block-centered {
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #AAA;
  border-image: linear-gradient(90deg, #0000 1%, #555, #0000 99%) 1;
  justify-content: center;
  text-align: center;
}
.section-label {
  position: relative;
  font-size: 1.5em;
  text-align: center;
  padding: 5px 10px;
}
.section-label-major {
  position: relative;
  font-size: 1.5em;
  text-align: center;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 2em;
}
.section-label-minor {
  position: relative;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
}
.section-label-btn-box {
  position: absolute;
  top: 7px;
  right: 7px;
}
.section-info {
  background-color: #EEE;
  width: 100%;
  padding: 10px;
  text-align: center;
}
.section-divider {
  width: 90%;
  border-bottom: 1px solid #AAA;
  margin: 5px auto;
}
.section-error-row .alert {
  min-width: 50%;
}
.section-detail-row {
  padding-bottom: 5px;
}
.section-detail-row label {
  font-weight: bold;
  padding-right: 10px;
}
.section-list-row {
  padding-bottom: 5px;
}
.section-list-row label {
  display: block;
  font-weight: bold;
}
.section-split-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
.section-split-row > div {
  flex-basis: 0;
  flex-grow: 1;
}
.section-split-row > .section-field-row,
.section-split-row > .section-detail-row {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 768px) {
  .section-split-row {
    flex-direction: column;
    align-items: stretch;
  }
}
.section-field-row {
  padding-bottom: 20px;
  min-width: 200px;
}
.section-field-row label {
  font-weight: bold;
  display: block;
}
.section-field-row .select2-container {
  width: 100%;
}
.section-field-row textarea {
  width: 100%;
  min-height: 100px;
}
.section-inline-field-row {
  padding-bottom: 15px;
  min-width: 200px;
}
.section-inline-field-row label:first-child {
  font-weight: bold;
  min-width: 200px;
  padding-right: 5px;
}
.section-bool-row {
  padding-bottom: 20px;
}
.section-bool-row label {
  user-select: none;
  font-weight: bold;
  padding-right: 10px;
}
.section-file-row {
  padding-bottom: 20px;
}
.section-file-row label:first-child {
  font-weight: bold;
  display: block;
}
.section-btn-row {
  margin: 5px 0px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.section-btn-row-center {
  margin: 5px 0px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.section-warning-row {
  color: #B00;
}
.section-notice-row {
  font-style: italic;
  color: #222;
  font-size: 1.1em;
  border: 2px solid #FC2;
  background-color: #FFB !important;
  text-align: center;
  padding: 5px;
}
.section-notice-row label {
  display: block;
  text-align: center;
  margin-bottom: 5px;
}
.section-link-row {
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.section-link-row-center {
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.section-field-disabled {
  color: #555;
  font-style: italic;
  font-weight: normal;
  cursor: not-allowed;
}
.section-field-disabled input {
  cursor: not-allowed;
}
.section-field-disabled label {
  cursor: not-allowed;
}
.section-field-error {
  color: red;
  font-size: 0.9em;
  font-weight: bold;
}
.section-column-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-text-block {
  width: 90%;
  min-height: 2em;
  padding: 4px;
  background: #eee;
  border: 2px solid #ddd;
}
.section-file-field a {
  overflow: hidden;
}
/*# sourceMappingURL=sections.css.map */