
:root {
  --font-family-sans: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --line-height-headers: 1.1;
  --line-height-body: 1.5;
  --font-size-xs: 0.75rem;
  --font-size-s: 0.875rem;
  --font-size-m: 1rem;
  --font-size-l: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
  --font-size-xxxl: 2rem;
  --font-size-xxxxl: 2.5rem;
  --color-text-header: hsl(0, 1%, 16%);
  --color-text-body: hsl(0, 5%, 25%);
  --color-text-muted: hsl(0, 1%, 44%);
  --space-xxxs: 0.25rem;
  --space-xxs: 0.375rem;
  --space-xs: 0.5rem;
  --space-s: 0.75rem;
  --space-m: 1rem;
  --space-l: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 2.5rem;
  --space-xxxl: 3rem;
  --space-xxxxl: 4rem;
  --color-primary: hsl(350, 67%, 50%);
  --color-primary-rotate: hsl(10, 73%, 54%);
  --color-primary-bg: hsl(0, 85%, 96%);
  --color-secondary: hsl(101, 45%, 56%);
  --color-secondary-rotate: hsl(120, 45%, 56%);
  --color-tertiary: hsl(49, 89%, 64%);
  --color-glint: hsl(210, 100%, 82%);
  --color-white: hsl(0, 0%, 100%);
  --color-background: hsl(30, 50%, 98%);
  --color-light: hsl(0, 6%, 93%);
  --color-dark: var(--color-text-header);
  --color-gray: #7f8c8d;
  --border-radius: 0.375rem;
  --border: solid 2px var(--color-light);
  --shadow-large: 2px 4px 10px hsl(0 0% 0% / 0.1);
  --shadow-small: 1px 3px 6px hsl(0 0% 0% / 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 80px;
  background-color: var(--color-background);
  color: var(--color-text-body);
  line-height: var(--line-height-body);
  font-family: var(--font-family-sans);
}

body.no-navbar {
  padding-top: 0;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-header);
  line-height: var(--line-height-headers);
}

h1 {
  font-size: var(--font-size-xxxl);
}

h2 {
  font-size: var(--font-size-xxl);
}

h3 {
  font-size: var(--font-size-xl);
}

h4 {
  font-size: var(--font-size-l);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 200ms;
}
a:hover, a:focus, a:active {
  color: var(--color-primary-rotate);
}

@keyframes appear-then-fade {
  0%, 100% {
    opacity: 0;
  }
  5%, 60% {
    opacity: 1;
  }
}
.bot {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-small);
  margin-bottom: var(--space-m);
  padding: var(--space-xs);
}
@media (min-width: 50rem) {
  .bot {
    padding: var(--space-xs) var(--space-m);
  }
}
.bot__content {
  display: block;
}
.bot__content .head {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.bot__content .head .activated-true {
  color: var(--color-dark);
  font-weight: bold;
}
.bot__content .head .activated-false {
  color: var(--color-gray);
  font-weight: normal;
}
.bot__content .bot-metrics {
  display: flex;
  align-content: flex-start;
}
.bot__content .bot-metrics div {
  padding: 0 4px;
  font-size: var(--font-size-s);
}
.bot__actions {
  display: flex;
  margin-left: auto;
  gap: var(--space-xs);
  min-width: 146px;
}

.bot-login-fieldset {
  padding: var(--space-s) var(--space-s) 0 var(--space-s);
  margin-top: var(--space-m);
  margin-bottom: var(--space-m);
  border: var(--border);
  border-radius: 4px;
}
.bot-login-fieldset legend {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-m);
}
.bot-login-fieldset legend span {
  margin-right: var(--space-s);
}

.field-note {
  margin-top: var(--space-xs);
  font-size: var(--font-size-s);
  border-radius: 4px;
  padding: var(--space-xs) var(--space-s);
}
.field-note--warning {
  background-color: #fef9e7;
  border-left: 4px solid #f1c40f;
  color: #7d6608;
}

.btn {
  display: inline-block;
  padding: var(--space-xxs) var(--space-m);
  border-radius: var(--border-radius);
  background-origin: border-box;
  background-color: transparent;
  border: solid 2px transparent;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  transition: filter 400ms, color 200ms;
}
.btn:hover, .btn:focus, .btn:focus-within, .btn:active {
  transition: filter 250ms, color 200ms;
}
.btn--primary {
  color: var(--color-white);
  background-image: linear-gradient(to right, var(--color-primary), var(--color-primary-rotate));
}
.btn--primary:hover, .btn--primary:focus, .btn--primary:focus-within, .btn--primary:active {
  color: var(--color-white);
  filter: saturate(1.4) brightness(115%);
}
.btn--secondary {
  color: var(--color-white);
  background-image: linear-gradient(to right, var(--color-secondary), var(--color-secondary-rotate));
}
.btn--secondary:hover, .btn--secondary:focus, .btn--secondary:focus-within, .btn--secondary:active {
  color: var(--color-white);
  filter: saturate(1.2) brightness(110%);
}
.btn--light {
  color: var(--color-dark);
  background-color: var(--color-light);
}
.btn--light:hover, .btn--light:focus, .btn--light:focus-within, .btn--light:active {
  color: var(--color-dark);
  filter: brightness(92%);
}
.btn--dark {
  color: var(--color-white);
  border-color: var(--color-dark);
  background-color: var(--color-dark);
}
.btn--dark:hover, .btn--dark:focus, .btn--dark:focus-within, .btn--dark:active {
  color: var(--color-white);
}

.condition {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-small);
  margin-bottom: var(--space-m);
  padding: var(--space-xs);
}
@media (min-width: 50rem) {
  .condition {
    padding: var(--space-m);
  }
}
.condition .condition-activated {
  font-size: 18px;
}
.condition .condition-activated .false {
  font-weight: normal;
  color: #7f8c8d;
}
.condition .condition-activated .true {
  font-weight: bold;
}
.condition .condition-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* インプット要素を非表示に */
  /* トグルラベルのスタイル */
  /* トグルがオンのときの背景色 */
  /* トグルボタンのデザイン */
  /* トグルがオンのときのボタン位置 */
}
.condition .condition-column .toggle-switch {
  display: table;
  margin-top: 8px;
  margin-bottom: 8px;
}
.condition .condition-column .toggle-switch > input {
  display: none;
}
.condition .condition-column .toggle-label {
  display: block;
  position: relative;
  width: 3em;
  height: 1.5em;
  border-radius: 1.5em;
  margin: 0;
  background-color: #ccc;
  cursor: pointer;
}
.condition .condition-column .toggle-switch > input:checked + .toggle-label {
  background-color: #2ecc71;
}
.condition .condition-column .toggle-label::before {
  position: absolute;
  top: 0.25em;
  left: 0.25em;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.3s;
  content: "";
}
.condition .condition-column .toggle-switch > input:checked + .toggle-label::before {
  left: calc(100% - 1.25em);
}
.condition .condition-column .condition-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  align-items: center;
}
.condition .condition-column .condition-btns {
  margin-top: 10px;
  margin-bottom: 20px;
}
.condition .condition-column .condition-btns a:not(:last-child) {
  margin-right: 10px;
}
.condition .condition-column .conditions-container {
  display: flex;
  flex-direction: column;
  margin: 10px;
}
.condition .condition-column .updown-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}
.condition .condition-column .updown-btn a:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.condition .condition-column .condition-metrics,
.condition .condition-column .condition-filters,
.condition .condition-column .condition-checks {
  display: flex;
  align-content: flex-start;
}
.condition .condition-column .condition-metrics,
.condition .condition-column .condition-filters {
  flex-wrap: wrap;
}
.condition .condition-column .condition-checks {
  flex-direction: column;
}
.condition .condition-column .outline-btn {
  line-height: 1.4;
  border-radius: 4px;
}
.condition .condition-column .condition-info > *:not(:last-child) {
  border-right: 1px solid #ccc;
  margin-right: 10px;
  padding-right: 10px;
}
.condition .condition-column .condition-info {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}
.condition .condition-column .condition-filters > *:not(:last-child):not(:nth-last-child(2))::after,
.condition .condition-column .send_limit_part > *:not(:last-child):not(:first-child)::after,
.condition .condition-column span[data-name=week_days]::before {
  content: "|";
  margin-right: 4px;
  margin-left: 4px;
}
.condition .condition-column .condition-metrics,
.condition .condition-column .condition-filters,
.condition .condition-column .condition-checks {
  flex: 1;
}
.condition .condition-column .condition-title {
  font-size: 22px;
  font-weight: normal;
}
.condition .condition-column .activated {
  font-size: 16px;
  font-weight: bold;
}
.condition .condition-column .condition-templates {
  font-size: 18px;
  font-weight: normal;
  color: #7f8c8d;
}
.condition .condition-column .condition-templates span:not(:last-child) {
  border-right: 1px solid #ccc;
  padding-right: 10px;
  margin-right: 10px;
}
.condition .condition-column .ng-wordset-part {
  flex-basis: 100%;
}
.condition .condition-column .condition-offers,
.condition .condition-column .condition-info {
  font-size: 14px;
  color: #7f8c8d;
}
.condition .condition-column .condition-offers {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.condition .condition-column .condition-offers > * {
  padding-right: 2px;
  padding-left: 2px;
}
.condition .condition-column .condition-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.condition-fieldset {
  padding: var(--space-s) var(--space-s) 0 var(--space-s);
  margin-bottom: var(--space-m);
  border: var(--border);
  border-radius: 4px;
}
.condition-fieldset legend {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-m);
}
.condition-fieldset legend span {
  margin-right: var(--space-s);
}

.working-hour {
  display: grid;
  grid-template-columns: repeat(30, auto);
}

.form .field.scout-condition-concealed {
  display: none;
}

.scout-condition-concealed {
  display: none;
}

.group {
  margin-left: 20px;
}

.ng-word-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ng-word-header label {
  margin-bottom: 0;
}

.ng-word-edit-link {
  padding: 0px 10px;
  display: inline-block;
}

.ob_event_delete,
.mng_seminar_delete {
  margin-left: var(--space-s);
}

.debug_dump {
  display: block;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  font-family: monospace;
  font-size: 14px;
  line-height: 1.5;
  margin: 20px 0;
  overflow: auto;
  white-space: pre-wrap;
}

.flash {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-s);
  max-width: 100%;
  width: max-content;
  padding: 0 var(--space-m);
}
.flash__message {
  font-size: var(--font-size-s);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-m);
  background-color: var(--color-dark);
  animation: appear-then-fade 6s both;
  border-radius: 999px;
}

.form__input {
  display: none;
}
.form__group {
  margin-bottom: var(--space-s);
}
.form .input {
  margin-bottom: var(--space-s);
}
.form label {
  margin-right: var(--space-s);
}
.form input.string {
  width: 500px;
}
.form input.boolean {
  margin-right: var(--space-s);
}
.form textarea {
  width: 500px;
  padding: 0 4px;
}
.form .field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}
.form .required-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-s);
}
.form .required-note__mark {
  color: var(--color-primary);
  font-weight: bold;
}
.form .required-mark {
  color: var(--color-primary);
  font-weight: bold;
  margin-left: calc(var(--space-xs) * -1);
  margin-right: var(--space-s);
}
.form .radio-wrapper {
  display: flex;
  margin-left: var(--space-s);
}
.form .radio-wrapper .radio-item {
  display: flex;
  align-items: center;
}
.form .radio-wrapper .radio-item input[type=radio] {
  margin: var(--space-xs);
  cursor: pointer;
}
.form .info-text {
  width: 100%;
  font-size: 12px;
  color: var(--color-text-muted);
}
.form [name="condition[week_days_array][]"] {
  margin-right: var(--space-xxxs);
}
.form label[for=condition_week_days_array] {
  margin-right: var(--space-l);
}
.form .checkbox-group {
  width: 100%;
}
.form .max-send {
  margin-left: var(--space-s);
  color: var(--color-text-muted);
}
.form .job-posting-details {
  width: 100%;
}
.form .job-posting-summary {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-m);
  cursor: pointer;
}
.form .job-posting-summary::marker {
  display: none;
}
.form .job-posting-summary > span {
  margin-right: var(--space-s);
}
.form .job-posting-summary > span::before {
  content: "▶ ";
  font-size: 18px;
  color: var(--color-primary);
}
.form .job-posting-details[open] .job-posting-summary > span::before {
  content: "▼ ";
}
.form .parse-result-details {
  width: 100%;
}
.form .parse-result-summary {
  cursor: pointer;
  color: var(--color-primary);
}
.form .parse-result-summary:hover {
  color: var(--color-primary-rotate);
}
.form .parse-result-summary::marker {
  color: var(--color-primary);
}
.form .parse-result-details[open] .parse-result-summary {
  margin-bottom: var(--space-s);
}
.form .parse-result {
  background-color: var(--color-white);
  border: 1px solid #bdc3c7;
  border-radius: 6px;
  padding: var(--space-s);
  font-size: 13px;
}
.form .parse-result-item {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid #ecf0f1;
}
.form .parse-result-item:last-child {
  border-bottom: none;
}
.form .parse-result-key {
  width: 140px;
  flex-shrink: 0;
  font-weight: 600;
  color: #2c3e50;
}
.form .parse-result-value {
  flex: 1;
  color: #34495e;
  line-height: 1.5;
}
.form .parse-result-tag {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 6px;
  margin-bottom: 4px;
  border-radius: 4px;
  font-size: 12px;
}
.form .parse-result-tag.is-active {
  background-color: var(--color-secondary);
  color: #fff;
}
.form .parse-result-tag.is-inactive {
  background-color: #ecf0f1;
  color: #95a5a6;
  text-decoration: line-through;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f7f8fa;
}
.login-container .login {
  width: 100%;
  max-width: 360px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.login-container .login__header {
  margin-bottom: 20px;
}
.login-container .login__header h2 {
  font-size: 24px;
  color: #333;
  text-align: center;
}
.login-container .login__body .label {
  display: block;
  margin-bottom: var(--space-s);
  color: #4a5568;
  font-size: 14px;
  font-weight: medium;
}
.login-container .login__body .field {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: var(--space-xs);
  padding: var(--space-xxs) var(--space-xs);
  border: var(--border);
  border-radius: var(--border-radius);
  outline: none;
  transition: box-shadow 250ms;
}
.login-container .login__body .field:focus {
  box-shadow: 0 0 0 2px var(--color-glint);
}
.login-container .login__body .field--invalid {
  border-color: var(--color-primary);
}
.login-container .login__body .mt-2 {
  margin-top: var(--space-xs);
}
.login-container .login__body .login-btn {
  width: 100%;
}
.login-container .login__body .forgot-password-link {
  display: block;
  margin-top: var(--space-m);
  text-align: center;
  font-size: 14px;
}
.login-container .login__body .password-reset-description {
  margin-bottom: var(--space-m);
  font-size: 14px;
  color: #4a5568;
}
.login-container .login__body .password-reset-submit {
  margin-top: var(--space-l);
}
.login-container .login__body .password-reset-back-link {
  margin-top: var(--space-m);
  text-align: center;
  font-size: 14px;
}
.login-container .login__body .password-reset-errors {
  margin-bottom: var(--space-m);
  padding: var(--space-s);
  border: 1px solid var(--color-primary);
  border-radius: var(--border-radius);
  color: var(--color-primary);
  font-size: 14px;
}
.login-container .login__body .password-reset-errors ul {
  margin: 0;
  padding-left: var(--space-m);
}

.navbar {
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-large);
  padding: var(--space-xxs) var(--space-m);
  margin-bottom: var(--space-xxl);
  background-color: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
}
.navbar__brand {
  font-weight: bold;
  font-size: var(--font-size-xl);
}
.navbar__brand .logo-link {
  color: var(--color-text-header);
}
.navbar__name {
  position: relative;
  font-weight: bold;
  margin-right: var(--space-s);
  cursor: pointer;
}
.navbar__name::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: var(--space-s);
}
.navbar__name:hover .hover-menu {
  display: block;
}
.navbar__name .hover-menu {
  display: none;
  position: absolute;
  top: calc(100% + var(--space-s));
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  z-index: 10;
}
.navbar__name .hover-menu .menu-item {
  width: 100%;
  height: 46px;
}
.navbar__name .hover-menu .menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-text-header);
  text-decoration: none;
  white-space: nowrap;
}
.navbar__right {
  margin-left: auto;
}
.navbar__item {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.navbar__item .nav_item {
  list-style: none;
  margin-right: var(--space-s);
  font-weight: bold;
}
.navbar__item .nav_item a {
  color: var(--color-text-header);
}

.ng-words-list-container {
  margin-top: 16px;
}
.ng-words-list-container h4 {
  margin-bottom: 12px;
}
.ng-words-list-container .ng-word-input-area {
  display: flex;
  align-items: center;
  margin: 16px 0;
}
.ng-words-list-container .ng-word-input-area input {
  width: 280px;
}
.ng-words-list-container .ng-word-input-area button {
  margin-left: 16px;
  width: 120px;
}
.ng-words-list-container #table-ng-words {
  font-size: 12px;
}
.ng-words-list-container #table-ng-words .text-center {
  text-align: center;
}
.ng-words-list-container #table-ng-words .w-5 {
  width: 5%;
}
.ng-words-list-container .col-sm-4 {
  width: 180px;
}
.ng-words-list-container .col-sm-8 {
  margin-left: auto;
  margin-right: 80px;
  width: 120px;
}
.ng-words-list-container .dt-input {
  width: 180px;
  font-size: 12px;
}

@media (max-width: 768px) {
  #ng-word-add-button {
    margin-top: 5px;
  }
}
.ng-word-sets-list-container {
  margin-top: 24px;
}
.ng-word-sets-list-container .create-link {
  margin-left: 16px;
}
.ng-word-sets-list-container h4 {
  margin-bottom: 16px;
}
.ng-word-sets-list-container .col-sm-4 {
  width: 180px;
}
.ng-word-sets-list-container .col-sm-8 {
  margin-left: auto;
  margin-right: 80px;
  width: 120px;
}
.ng-word-sets-list-container .dt-input {
  width: 180px;
  font-size: 12px;
}
.ng-word-sets-list-container #table-ng-word-sets {
  margin: 3px;
  font-size: 14px;
}
.ng-word-sets-list-container #table-ng-word-sets .text-center {
  text-align: center;
}
.ng-word-sets-list-container #table-ng-word-sets .w-5 {
  width: 5%;
}
.ng-word-sets-list-container #table-ng-word-sets .w-35 {
  width: 35%;
}
.ng-word-sets-list-container #table-ng-word-sets .w-50 {
  width: 50%;
}

.ng-word-set-form .ng-word-checkbox {
  margin-right: 2px;
  margin-left: 2px;
  display: block;
  float: left;
  height: 30px;
  width: 24%;
  white-space: nowrap;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ng-word-set-form .ng-word-checkbox {
    width: 15%;
  }
}
.ng-word-set-form .ng-word-checkbox input {
  width: 10%;
}
.ng-word-set-form .ng-word-checkbox label {
  font-size: 12px;
}
.ng-word-set-form .ng-word-sets-form-label {
  font-weight: bold;
  font-size: 18px;
}
.ng-word-set-form .ng-word-sets-form-control {
  width: 90%;
}
.ng-word-set-form .toggle-all {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 12px;
}
.ng-word-set-form .toggle-all span {
  font-size: 18px;
  font-weight: bold;
}
.ng-word-set-form .checkbox-container {
  margin-top: 16px;
}
.ng-word-set-form .checkbox-container::after {
  content: "";
  display: table;
  clear: both;
}
.ng-word-set-form .button-container {
  margin-top: 16px;
}

.select-file {
  display: flex;
  align-items: center;
}
.select-file .select-button-container {
  padding-right: 10px;
  margin: 2px 0;
}
.select-file .select-button-container .btn-select-file {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #95a5a6;
  color: #95a5a6;
}
.select-file__form {
  width: 380px;
  border-radius: 0;
  color: #95a5a6;
  position: static;
  background-color: #f4f6f6;
  border-color: #d5dbdb;
  cursor: default;
  opacity: 0.7;
  border: 2px solid #bdc3c7;
  height: 42px;
}

.server__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.scout-results .header {
  justify-content: flex-start;
  align-items: center;
}
.scout-results .form {
  margin-bottom: 12px;
}
.scout-results #scout-results-table {
  font-size: 12px;
}
.scout-results .col-sm-4 {
  width: 180px;
}
.scout-results .col-sm-8 {
  margin-left: auto;
  margin-right: 80px;
  width: 120px;
}
.scout-results .dt-input {
  width: 180px;
  font-size: 12px;
}
.scout-results a.btn.btn--light {
  margin-bottom: 24px;
}
.scout-results .hidden {
  display: none;
}
.scout-results .skip-details-list {
  list-style: none;
  padding-left: 0;
}
.scout-results .date-link {
  margin-left: var(--space-xs);
}

.aggregated-data-container .field a {
  margin-left: 12px;
}

.settings-item {
  margin-bottom: 24px;
}

.tooltip-info {
  position: relative;
  display: inline-block;
  margin-left: calc(var(--space-xs) * -1);
  margin-right: var(--space-s);
}
.tooltip-info .tooltiptext {
  position: absolute;
  display: none;
  right: -350px;
  transform: translateY(10px);
  width: 400px;
  padding: 8px;
  font-size: 11px;
  text-align: left;
  white-space: pre-line;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.tooltip-info:hover .tooltiptext {
  display: inline;
}

.help-section {
  margin-bottom: var(--space-m);
}
.help-section .help-item {
  margin-top: var(--space-s);
}

/* ヘルプリンク */
.help-link {
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s;
}

/* ヘルプパネル本体 */
.help-panel {
  position: fixed;
  top: 52px;
  right: -400px;
  width: 400px;
  height: calc(100vh - 52px);
  background-color: #ffffff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

.help-panel.is-open {
  right: 0;
}

/* パネルヘッダー */
.help-panel-header {
  position: sticky;
  top: 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 0 16px;
  height: 52px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

/* ヘッダータイトル */
.help-panel-title {
  font-weight: bold;
  font-size: 16px;
  color: #212529;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* パネルコンテンツ */
.help-panel-content {
  padding: 16px;
  position: relative;
}

.help-panel-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.help-panel-close:hover {
  color: #212529;
}

.help-content-item {
  display: none;
}

.help-content-item.is-active {
  display: block;
}

.help-content-section {
  margin-bottom: 24px;
}

.help-content-section:last-child {
  margin-bottom: 0;
}

.help-content-heading {
  font-size: 14px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
}

.help-content-text {
  font-size: 14px;
  line-height: 1.6;
  color: #495057;
}

.help-content-text:last-child {
  margin-bottom: 0;
}

.help-content-list {
  margin: 8px 0;
  padding-left: 20px;
}

.help-content-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 4px;
}

.field label {
  display: inline-flex;
  align-items: center;
}

.help-content-subheading {
  font-size: 16px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
  color: #333;
}

.help-content-image {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.help-content-image:hover {
  opacity: 0.8;
}

/* 画像拡大モーダル */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.image-modal.is-open {
  display: flex;
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-modal-content img {
  max-width: 800px;
  max-height: 600px;
  width: auto;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 36px;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.image-modal-close:hover {
  color: #cccccc;
}

@media (max-width: 768px) {
  .help-panel {
    width: 100%;
    right: -100%;
  }
  .image-modal-close {
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
  }
}
.magic-word-field {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  margin-left: 12px;
}

.magic-word-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.magic-word-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.magic-word-text {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 2px 4px;
  min-width: 100px;
}

.copy-button {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 2px 4px;
}

.copy-notification {
  display: inline-block;
  padding: 2px 4px;
  margin-left: 10px;
  background-color: var(--color-dark);
  color: white;
  border-radius: 3px;
  animation: fadeInOut 2s ease-out;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-5px);
  }
}
.inquiry span {
  font-size: var(--font-size-xxl);
}

.faq-category {
  margin-bottom: var(--space-m);
  border: var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.faq-category__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-l);
  background: var(--color-white);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-category__header:hover {
  background: var(--color-background);
}
.faq-category__title {
  font-size: var(--font-size-l);
  font-weight: 700;
  color: var(--color-primary);
}
.faq-category__arrow {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-category__arrow::before, .faq-category__arrow::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--color-primary);
  top: 50%;
}
.faq-category__arrow::before {
  right: 50%;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
.faq-category__arrow::after {
  left: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: left center;
}
.faq-category__content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
  background: var(--color-background);
}
.faq-category__content > div {
  overflow: hidden;
  padding: 0 var(--space-m);
  transition: padding 0.3s ease;
}
.faq-category.is-open .faq-category__arrow {
  transform: rotate(180deg);
}
.faq-category.is-open .faq-category__content {
  grid-template-rows: 1fr;
}
.faq-category.is-open .faq-category__content > div {
  padding: var(--space-m);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-s);
  box-shadow: var(--shadow-small);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: var(--space-s);
  padding: var(--space-l);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  border-radius: var(--border-radius);
}
.faq-item__question:hover {
  background: var(--color-primary-bg);
}
.faq-item__q {
  font-size: var(--font-size-l);
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}
.faq-item__text {
  flex: 1;
  font-size: var(--font-size-m);
  font-weight: 500;
  color: var(--color-text-body);
  line-height: var(--line-height-body);
  white-space: pre-wrap;
}
.faq-item__arrow {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
  margin-top: var(--space-xxxs);
  transition: transform 0.3s;
}
.faq-item__arrow::before, .faq-item__arrow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: var(--color-text-muted);
  top: 50%;
}
.faq-item__arrow::before {
  right: 50%;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
.faq-item__arrow::after {
  left: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: left center;
}
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}
.faq-item__answer > div {
  overflow: hidden;
}
.faq-item__answer-text {
  padding: var(--space-l);
  color: var(--color-text-body);
  font-size: var(--font-size-s);
  line-height: 1.8;
  white-space: pre-wrap;
}
.faq-item__image-wrapper {
  padding: 0 var(--space-l) var(--space-l);
}
.faq-item__image {
  display: block;
  border: var(--border);
  border-radius: var(--border-radius);
  max-width: 100%;
}
.faq-item.is-open .faq-item__arrow {
  transform: rotate(180deg);
}
.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.container {
  width: 100%;
  padding-right: var(--space-xs);
  padding-left: var(--space-xs);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50rem) {
  .container {
    padding-right: var(--space-m);
    padding-left: var(--space-m);
    max-width: 60rem;
  }
  .container.scout-results {
    max-width: none;
  }
}

.header {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  justify-content: space-between;
  margin-top: var(--space-m);
  margin-bottom: var(--space-l);
}
@media (min-width: 50rem) {
  .header {
    margin-bottom: var(--space-xl);
  }
}

.ml-m {
  margin-left: var(--space-m);
}

.mr-m {
  margin-right: var(--space-m);
}

.mb-xxxxl {
  margin-bottom: var(--space-xxxxl);
}

.mt-m {
  margin-top: var(--space-m);
}

.mt-l {
  margin-top: var(--space-l);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.flex {
  display: flex;
}

:root {
  --dt-row-selected: 13, 110, 253;
  --dt-row-selected-text: 255, 255, 255;
  --dt-row-selected-link: 9, 10, 11;
  --dt-row-stripe: 0, 0, 0;
  --dt-row-hover: 0, 0, 0;
  --dt-column-ordering: 0, 0, 0;
  --dt-html-background: white;
}

:root.dark {
  --dt-html-background: rgb(33, 37, 41);
}

table.dataTable td.dt-control {
  text-align: center;
  cursor: pointer;
}

table.dataTable td.dt-control:before {
  display: inline-block;
  box-sizing: border-box;
  content: "";
  border-top: 5px solid transparent;
  border-left: 10px solid rgba(0, 0, 0, 0.5);
  border-bottom: 5px solid transparent;
  border-right: 0px solid transparent;
}

table.dataTable tr.dt-hasChild td.dt-control:before {
  border-top: 10px solid rgba(0, 0, 0, 0.5);
  border-left: 5px solid transparent;
  border-bottom: 0px solid transparent;
  border-right: 5px solid transparent;
}

html.dark table.dataTable td.dt-control:before,
:root[data-bs-theme=dark] table.dataTable td.dt-control:before {
  border-left-color: rgba(255, 255, 255, 0.5);
}

html.dark table.dataTable tr.dt-hasChild td.dt-control:before,
:root[data-bs-theme=dark] table.dataTable tr.dt-hasChild td.dt-control:before {
  border-top-color: rgba(255, 255, 255, 0.5);
  border-left-color: transparent;
}

div.dt-scroll-body thead tr,
div.dt-scroll-body tfoot tr {
  height: 0;
}

div.dt-scroll-body thead tr th, div.dt-scroll-body thead tr td,
div.dt-scroll-body tfoot tr th,
div.dt-scroll-body tfoot tr td {
  height: 0 !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  border-top-width: 0px !important;
  border-bottom-width: 0px !important;
}

div.dt-scroll-body thead tr th div.dt-scroll-sizing, div.dt-scroll-body thead tr td div.dt-scroll-sizing,
div.dt-scroll-body tfoot tr th div.dt-scroll-sizing,
div.dt-scroll-body tfoot tr td div.dt-scroll-sizing {
  height: 0 !important;
  overflow: hidden !important;
}

table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}

table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before {
  position: absolute;
  display: block;
  bottom: 50%;
  content: "▲";
  content: "▲"/"";
}

table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  position: absolute;
  display: block;
  top: 50%;
  content: "▼";
  content: "▼"/"";
}

table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc, table.dataTable thead > tr > th.dt-ordering-asc, table.dataTable thead > tr > th.dt-ordering-desc,
table.dataTable thead > tr > td.dt-orderable-asc,
table.dataTable thead > tr > td.dt-orderable-desc,
table.dataTable thead > tr > td.dt-ordering-asc,
table.dataTable thead > tr > td.dt-ordering-desc {
  position: relative;
  padding-right: 30px;
}

table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order {
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  width: 12px;
}

table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  left: 0;
  opacity: 0.125;
  line-height: 9px;
  font-size: 0.8em;
}

table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc,
table.dataTable thead > tr > td.dt-orderable-asc,
table.dataTable thead > tr > td.dt-orderable-desc {
  cursor: pointer;
}

table.dataTable thead > tr > th.dt-orderable-asc:hover, table.dataTable thead > tr > th.dt-orderable-desc:hover,
table.dataTable thead > tr > td.dt-orderable-asc:hover,
table.dataTable thead > tr > td.dt-orderable-desc:hover {
  outline: 2px solid rgba(0, 0, 0, 0.05);
  outline-offset: -2px;
}

table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  opacity: 0.6;
}

table.dataTable thead > tr > th.sorting_desc_disabled span.dt-column-order:after, table.dataTable thead > tr > th.sorting_asc_disabled span.dt-column-order:before,
table.dataTable thead > tr > td.sorting_desc_disabled span.dt-column-order:after,
table.dataTable thead > tr > td.sorting_asc_disabled span.dt-column-order:before {
  display: none;
}

table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}

div.dt-scroll-body > table.dataTable > thead > tr > th,
div.dt-scroll-body > table.dataTable > thead > tr > td {
  overflow: hidden;
}

:root.dark table.dataTable thead > tr > th.dt-orderable-asc:hover, :root.dark table.dataTable thead > tr > th.dt-orderable-desc:hover,
:root.dark table.dataTable thead > tr > td.dt-orderable-asc:hover,
:root.dark table.dataTable thead > tr > td.dt-orderable-desc:hover,
:root[data-bs-theme=dark] table.dataTable thead > tr > th.dt-orderable-asc:hover,
:root[data-bs-theme=dark] table.dataTable thead > tr > th.dt-orderable-desc:hover,
:root[data-bs-theme=dark] table.dataTable thead > tr > td.dt-orderable-asc:hover,
:root[data-bs-theme=dark] table.dataTable thead > tr > td.dt-orderable-desc:hover {
  outline: 2px solid rgba(255, 255, 255, 0.05);
}

div.dt-processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -22px;
  text-align: center;
  padding: 2px;
  z-index: 10;
}

div.dt-processing > div:last-child {
  position: relative;
  width: 80px;
  height: 15px;
  margin: 1em auto;
}

div.dt-processing > div:last-child > div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgb(13, 110, 253);
  background: rgb(var(--dt-row-selected));
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

div.dt-processing > div:last-child > div:nth-child(1) {
  left: 8px;
  animation: datatables-loader-1 0.6s infinite;
}

div.dt-processing > div:last-child > div:nth-child(2) {
  left: 8px;
  animation: datatables-loader-2 0.6s infinite;
}

div.dt-processing > div:last-child > div:nth-child(3) {
  left: 32px;
  animation: datatables-loader-2 0.6s infinite;
}

div.dt-processing > div:last-child > div:nth-child(4) {
  left: 56px;
  animation: datatables-loader-3 0.6s infinite;
}

@keyframes datatables-loader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes datatables-loader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes datatables-loader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}

table.dataTable th,
table.dataTable td {
  box-sizing: border-box;
}

table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}

table.dataTable th.dt-center,
table.dataTable td.dt-center {
  text-align: center;
}

table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}

table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}

table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}

table.dataTable th.dt-empty,
table.dataTable td.dt-empty {
  text-align: center;
  vertical-align: top;
}

table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date,
table.dataTable td.dt-type-numeric,
table.dataTable td.dt-type-date {
  text-align: right;
}

table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
  text-align: left;
}

table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}

table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}

table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}

table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}

table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}

table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}

table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}

table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}

table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}

table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}

/*
 * Table styles
 */
table.dataTable {
  width: 100%;
  margin: 0 auto;
  border-spacing: 0;
  /*
   * Header and footer styles
   */
  /*
   * Body styles
   */
}

table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold;
}

table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

table.dataTable > thead > tr > th:active,
table.dataTable > thead > tr > td:active {
  outline: none;
}

table.dataTable > tfoot > tr > th,
table.dataTable > tfoot > tr > td {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding: 10px 10px 6px 10px;
}

table.dataTable > tbody > tr {
  background-color: transparent;
}

table.dataTable > tbody > tr:first-child > * {
  border-top: none;
}

table.dataTable > tbody > tr:last-child > * {
  border-bottom: none;
}

table.dataTable > tbody > tr.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.9);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.9);
  color: rgb(255, 255, 255);
  color: rgb(var(--dt-row-selected-text));
}

table.dataTable > tbody > tr.selected a {
  color: rgb(9, 10, 11);
  color: rgb(var(--dt-row-selected-link));
}

table.dataTable > tbody > tr > th,
table.dataTable > tbody > tr > td {
  padding: 8px 10px;
}

table.dataTable.row-border > tbody > tr > *, table.dataTable.display > tbody > tr > * {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

table.dataTable.row-border > tbody > tr:first-child > *, table.dataTable.display > tbody > tr:first-child > * {
  border-top: none;
}

table.dataTable.row-border > tbody > tr.selected + tr.selected > td, table.dataTable.display > tbody > tr.selected + tr.selected > td {
  border-top-color: rgba(13, 110, 253, 0.65);
  border-top-color: rgba(var(--dt-row-selected), 0.65);
}

table.dataTable.cell-border > tbody > tr > * {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

table.dataTable.cell-border > tbody > tr > *:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

table.dataTable.cell-border > tbody > tr:first-child > * {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

table.dataTable.stripe > tbody > tr:nth-child(odd) > *, table.dataTable.display > tbody > tr:nth-child(odd) > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.023);
}

table.dataTable.stripe > tbody > tr:nth-child(odd).selected > *, table.dataTable.display > tbody > tr:nth-child(odd).selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.923);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.923);
}

table.dataTable.hover > tbody > tr:hover > *, table.dataTable.display > tbody > tr:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.035);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.035);
}

table.dataTable.hover > tbody > tr.selected:hover > *, table.dataTable.display > tbody > tr.selected:hover > * {
  box-shadow: inset 0 0 0 9999px #0d6efd !important;
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 1) !important;
}

table.dataTable.order-column > tbody tr > .sorting_1,
table.dataTable.order-column > tbody tr > .sorting_2,
table.dataTable.order-column > tbody tr > .sorting_3, table.dataTable.display > tbody tr > .sorting_1,
table.dataTable.display > tbody tr > .sorting_2,
table.dataTable.display > tbody tr > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.019);
}

table.dataTable.order-column > tbody tr.selected > .sorting_1,
table.dataTable.order-column > tbody tr.selected > .sorting_2,
table.dataTable.order-column > tbody tr.selected > .sorting_3, table.dataTable.display > tbody tr.selected > .sorting_1,
table.dataTable.display > tbody tr.selected > .sorting_2,
table.dataTable.display > tbody tr.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
}

table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_1, table.dataTable.order-column.stripe > tbody > tr:nth-child(odd) > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.054);
}

table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_2, table.dataTable.order-column.stripe > tbody > tr:nth-child(odd) > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.047);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.047);
}

table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_3, table.dataTable.order-column.stripe > tbody > tr:nth-child(odd) > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.039);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.039);
}

table.dataTable.display > tbody > tr:nth-child(odd).selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr:nth-child(odd).selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.954);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.954);
}

table.dataTable.display > tbody > tr:nth-child(odd).selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr:nth-child(odd).selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.947);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.947);
}

table.dataTable.display > tbody > tr:nth-child(odd).selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr:nth-child(odd).selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.939);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.939);
}

table.dataTable.display > tbody > tr.even > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.019);
}

table.dataTable.display > tbody > tr.even > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.011);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.011);
}

table.dataTable.display > tbody > tr.even > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.003);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.003);
}

table.dataTable.display > tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
}

table.dataTable.display > tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.911);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.911);
}

table.dataTable.display > tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.903);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.903);
}

table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.082);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.082);
}

table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.074);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.074);
}

table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.062);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.062);
}

table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.982);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.982);
}

table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.974);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.974);
}

table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.962);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.962);
}

table.dataTable.compact thead th,
table.dataTable.compact thead td,
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td,
table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
  padding: 4px;
}

/*
 * Control feature layout
 */
div.dt-container {
  position: relative;
  clear: both;
}

div.dt-container div.dt-layout-row {
  display: table;
  clear: both;
  width: 100%;
}

div.dt-container div.dt-layout-row.dt-layout-table {
  display: block;
}

div.dt-container div.dt-layout-row.dt-layout-table div.dt-layout-cell {
  display: block;
}

div.dt-container div.dt-layout-cell {
  display: table-cell;
  vertical-align: middle;
  padding: 5px 0;
}

div.dt-container div.dt-layout-cell.dt-full {
  text-align: center;
}

div.dt-container div.dt-layout-cell.dt-start {
  text-align: left;
}

div.dt-container div.dt-layout-cell.dt-end {
  text-align: right;
}

div.dt-container div.dt-layout-cell:empty {
  display: none;
}

div.dt-container .dt-search input {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  color: inherit;
  margin-left: 3px;
}

div.dt-container .dt-input {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  color: inherit;
}

div.dt-container select.dt-input {
  padding: 4px;
}

div.dt-container .dt-paging .dt-paging-button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  color: inherit !important;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
}

div.dt-container .dt-paging .dt-paging-button.current, div.dt-container .dt-paging .dt-paging-button.current:hover {
  color: inherit !important;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.05);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.05)), color-stop(100%, rgba(0, 0, 0, 0.05))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* FF3.6+ */
  background: -ms-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* IE10+ */
  background: -o-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* Opera 11.10+ */
  background: linear-gradient(to bottom, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* W3C */
}

div.dt-container .dt-paging .dt-paging-button.disabled, div.dt-container .dt-paging .dt-paging-button.disabled:hover, div.dt-container .dt-paging .dt-paging-button.disabled:active {
  cursor: default;
  color: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}

div.dt-container .dt-paging .dt-paging-button:hover {
  color: white !important;
  border: 1px solid #111;
  background-color: #111;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #585858 0%, #111 100%); /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #585858 0%, #111 100%); /* FF3.6+ */
  background: -ms-linear-gradient(top, #585858 0%, #111 100%); /* IE10+ */
  background: -o-linear-gradient(top, #585858 0%, #111 100%); /* Opera 11.10+ */
  background: linear-gradient(to bottom, #585858 0%, #111 100%); /* W3C */
}

div.dt-container .dt-paging .dt-paging-button:active {
  outline: none;
  background-color: #0c0c0c;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* FF3.6+ */
  background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* IE10+ */
  background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* Opera 11.10+ */
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%); /* W3C */
  box-shadow: inset 0 0 3px #111;
}

div.dt-container .dt-paging .ellipsis {
  padding: 0 1em;
}

div.dt-container .dt-length,
div.dt-container .dt-search,
div.dt-container .dt-info,
div.dt-container .dt-processing,
div.dt-container .dt-paging {
  color: inherit;
}

div.dt-container .dataTables_scroll {
  clear: both;
}

div.dt-container .dataTables_scroll div.dt-scroll-body {
  -webkit-overflow-scrolling: touch;
}

div.dt-container .dataTables_scroll div.dt-scroll-body > table > thead > tr > th, div.dt-container .dataTables_scroll div.dt-scroll-body > table > thead > tr > td, div.dt-container .dataTables_scroll div.dt-scroll-body > table > tbody > tr > th, div.dt-container .dataTables_scroll div.dt-scroll-body > table > tbody > tr > td {
  vertical-align: middle;
}

div.dt-container .dataTables_scroll div.dt-scroll-body > table > thead > tr > th > div.dataTables_sizing,
div.dt-container .dataTables_scroll div.dt-scroll-body > table > thead > tr > td > div.dataTables_sizing, div.dt-container .dataTables_scroll div.dt-scroll-body > table > tbody > tr > th > div.dataTables_sizing,
div.dt-container .dataTables_scroll div.dt-scroll-body > table > tbody > tr > td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

div.dt-container.dt-empty-footer tbody > tr:last-child > * {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

div.dt-container.dt-empty-footer .dt-scroll-body {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

div.dt-container.dt-empty-footer .dt-scroll-body tbody > tr:last-child > * {
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  div.dt-container div.dt-layout-row {
    display: block;
  }
  div.dt-container div.dt-layout-cell {
    display: block;
  }
  div.dt-container div.dt-layout-cell.dt-full, div.dt-container div.dt-layout-cell.dt-start, div.dt-container div.dt-layout-cell.dt-end {
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .dt-container .dt-length,
  .dt-container .dt-search {
    float: none;
    text-align: center;
  }
  .dt-container .dt-search {
    margin-top: 0.5em;
  }
}
html.dark {
  --dt-row-hover: 255, 255, 255;
  --dt-row-stripe: 255, 255, 255;
  --dt-column-ordering: 255, 255, 255;
}

html.dark table.dataTable > thead > tr > th,
html.dark table.dataTable > thead > tr > td {
  border-bottom: 1px solid rgb(89, 91, 94);
}

html.dark table.dataTable > thead > tr > th:active,
html.dark table.dataTable > thead > tr > td:active {
  outline: none;
}

html.dark table.dataTable > tfoot > tr > th,
html.dark table.dataTable > tfoot > tr > td {
  border-top: 1px solid rgb(89, 91, 94);
}

html.dark table.dataTable.row-border > tbody > tr > *, html.dark table.dataTable.display > tbody > tr > * {
  border-top: 1px solid rgb(64, 67, 70);
}

html.dark table.dataTable.row-border > tbody > tr:first-child > *, html.dark table.dataTable.display > tbody > tr:first-child > * {
  border-top: none;
}

html.dark table.dataTable.row-border > tbody > tr.selected + tr.selected > td, html.dark table.dataTable.display > tbody > tr.selected + tr.selected > td {
  border-top-color: rgba(13, 110, 253, 0.65);
  border-top-color: rgba(var(--dt-row-selected), 0.65);
}

html.dark table.dataTable.cell-border > tbody > tr > th,
html.dark table.dataTable.cell-border > tbody > tr > td {
  border-top: 1px solid rgb(64, 67, 70);
  border-right: 1px solid rgb(64, 67, 70);
}

html.dark table.dataTable.cell-border > tbody > tr > th:first-child,
html.dark table.dataTable.cell-border > tbody > tr > td:first-child {
  border-left: 1px solid rgb(64, 67, 70);
}

html.dark .dt-container.dt-empty-footer table.dataTable {
  border-bottom: 1px solid rgb(89, 91, 94);
}

html.dark .dt-container .dt-search input,
html.dark .dt-container .dt-length select {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--dt-html-background);
}

html.dark .dt-container .dt-paging .dt-paging-button.current, html.dark .dt-container .dt-paging .dt-paging-button.current:hover {
  border: 1px solid rgb(89, 91, 94);
  background: rgba(255, 255, 255, 0.15);
}

html.dark .dt-container .dt-paging .dt-paging-button.disabled, html.dark .dt-container .dt-paging .dt-paging-button.disabled:hover, html.dark .dt-container .dt-paging .dt-paging-button.disabled:active {
  color: #666 !important;
}

html.dark .dt-container .dt-paging .dt-paging-button:hover {
  border: 1px solid rgb(53, 53, 53);
  background: rgb(53, 53, 53);
}

html.dark .dt-container .dt-paging .dt-paging-button:active {
  background: #3a3a3a;
}

/*
 * Overrides for RTL support
 */
*[dir=rtl] table.dataTable thead th,
*[dir=rtl] table.dataTable thead td,
*[dir=rtl] table.dataTable tfoot th,
*[dir=rtl] table.dataTable tfoot td {
  text-align: right;
}

*[dir=rtl] table.dataTable th.dt-type-numeric, *[dir=rtl] table.dataTable th.dt-type-date,
*[dir=rtl] table.dataTable td.dt-type-numeric,
*[dir=rtl] table.dataTable td.dt-type-date {
  text-align: left;
}

*[dir=rtl] div.dt-container div.dt-layout-cell.dt-start {
  text-align: right;
}

*[dir=rtl] div.dt-container div.dt-layout-cell.dt-end {
  text-align: left;
}

*[dir=rtl] div.dt-container div.dt-search input {
  margin: 0 3px 0 0;
}
