/*
 * 一覧テーブルのセルを折り返さず省略記号（…）で切り詰めるための共通スタイル。
 * 対象テーブルに `cops-table-ellipsis` クラスを付与することで有効化する（オプトイン）。
 * 操作列のボタン余白・フォントは `application.css` 末尾（require_self を manifest 末尾に配置）と `cops-table-compact-row-actions` 系クラスで指定する。
 *
 * 個別セルで省略を無効にしたい場合は、その %td に `cops-no-ellipsis` を付与する。
 * 既定で最後の列（操作ボタン列など）は除外する。
 */

table.cops-table-ellipsis {
  table-layout: auto;
}

table.cops-table-ellipsis td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 0; /* table-layout:auto で ellipsis を効かせる定番テクニック */
}

/* 最後の列（通常は操作ボタン群）は省略対象外にする */
table.cops-table-ellipsis td:last-child {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  max-width: none;
}

/* 明示的に省略を無効化したいセル */
table.cops-table-ellipsis td.cops-no-ellipsis {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  max-width: none;
}

/* 操作列ボタンのコンパクト化は `z_list_table_compact.css`（読込末尾）で定義 */

/* 一覧テーブル: ボタン類を含むセル（通常は操作列）は右寄せ */
table.cops-table-ellipsis td:has(.uk-button) {
  text-align: right;
}
/* セル内が flex コンテナの場合は justify-content で右寄せ */
table.cops-table-ellipsis td:has(.uk-button) > .uk-flex {
  justify-content: flex-end;
}

/* 画面幅に収まらない場合に横スクロールを可能にするラッパー */
.cops-table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ヒートマップ（uk-table ではない）: ラベル列のみ */
table.heatmap-table thead th,
table.heatmap-table td.heatmap-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 14rem;
}
/*
 * 固定部品：ドラッグ用グリフ（⠿ / ☰）を出さず、ガター列と縦線のみ。
 * application マニフェスト末尾と mobile レイアウト末尾で読み込み、他スタイルを上書きする。
 */

.answer-area .choice-card.undraggable.cops-fixed-handle-gutter::before,
.choice-card.undraggable.cops-fixed-handle-gutter::before {
  content: none !important;
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.answer-area .choice-card.undraggable.cops-fixed-handle-gutter .cops-fixed-gutter-rail,
.choice-card.undraggable.cops-fixed-handle-gutter .cops-fixed-gutter-rail {
  flex: 0 0 auto;
  align-self: stretch;
  width: 34px;
  min-width: 34px;
  border-right: 1px solid #d0d7de;
  box-sizing: border-box;
}

.redips-drag.t1.undraggable.cops-fixed-handle-gutter::before {
  content: none !important;
  display: none !important;
}

.redips-drag.t1.undraggable.cops-fixed-handle-gutter .cops-fixed-gutter-rail {
  flex: 0 0 auto;
  align-self: stretch;
  width: 34px;
  min-width: 34px;
  border-right: 1px solid #d0d7de;
  box-sizing: border-box;
}

/* take_mobile：本文とガター列の相対位置（cops-drag-handle と同様） */
.m-question .m-fixed-card-gutter ~ * {
  margin-left: 0 !important;
}

/* take_mobile：固定カード左列（テキスト記号なし） */
.m-question .m-card-fixed .m-fixed-card-gutter {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 25px !important;
  border-right: 1px solid #e8e8e8 !important;
  pointer-events: none !important;
  cursor: default !important;
  z-index: 2 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
/* line 6, app/assets/stylesheets/exams.scss */
.cops-mode-card {
  border: 2px solid #ddd;
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

/* line 13, app/assets/stylesheets/exams.scss */
.cops-mode-card:hover {
  border-color: #1565c0;
}

/* line 17, app/assets/stylesheets/exams.scss */
.cops-mode-card.cops-mode-selected {
  border-color: #1565c0;
  background: #e3f2fd;
}

/* line 22, app/assets/stylesheets/exams.scss */
.cops-mode-card p.uk-text-muted {
  margin: 2px 0 0 !important;
}

/* line 28, app/assets/stylesheets/exams.scss */
.cops-mode-card-row.uk-grid {
  margin-left: -10px !important;
}

/* line 31, app/assets/stylesheets/exams.scss */
.cops-mode-card-row.uk-grid > * {
  padding-left: 10px !important;
}

@media (min-width: 1220px) {
  /* line 37, app/assets/stylesheets/exams.scss */
  .cops-mode-card-row.uk-grid {
    margin-left: -10px !important;
  }
  /* line 40, app/assets/stylesheets/exams.scss */
  .cops-mode-card-row.uk-grid > * {
    padding-left: 10px !important;
  }
}

/* line 47, app/assets/stylesheets/exams.scss */
.uk-panel.uk-panel-box.cops-exam-basic-settings {
  margin-bottom: 20px !important;
  padding: 24px !important;
  box-sizing: border-box;
}

/* line 52, app/assets/stylesheets/exams.scss */
.uk-panel.uk-panel-box.cops-exam-basic-settings h3 {
  margin: 0 0 20px !important;
}

/* line 56, app/assets/stylesheets/exams.scss */
.uk-panel.uk-panel-box.cops-exam-basic-settings .uk-form-row.uk-margin-bottom {
  margin-bottom: 32px !important;
}

/* line 60, app/assets/stylesheets/exams.scss */
.uk-panel.uk-panel-box.cops-exam-basic-settings .uk-form-row.uk-margin-bottom.cops-exam-retry-after-order {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

/* line 65, app/assets/stylesheets/exams.scss */
.uk-panel.uk-panel-box.cops-exam-basic-settings .uk-form-row.uk-margin-bottom .uk-form-label {
  display: block;
  margin-bottom: 12px !important;
}

/* line 70, app/assets/stylesheets/exams.scss */
.uk-panel.uk-panel-box.cops-exam-basic-settings .uk-form-row.cops-exam-mode-row-tight {
  margin-bottom: 32px !important;
}

/* line 74, app/assets/stylesheets/exams.scss */
.uk-panel.uk-panel-box.cops-exam-basic-settings .uk-form-row.cops-exam-mode-row-tight .uk-form-label,
.uk-panel.uk-panel-box.cops-exam-basic-settings .uk-form-row.cops-exam-retry-after-order .uk-form-label {
  display: block;
  margin-bottom: 12px !important;
}

/* line 82, app/assets/stylesheets/exams.scss */
.uk-panel.uk-panel-box.cops-exam-order-panel {
  margin-top: 0 !important;
}

/* line 87, app/assets/stylesheets/exams.scss */
#eq-per-page-toolbar.cops-eq-per-toolbar {
  margin-top: 28px !important;
  padding-top: 18px !important;
  padding-bottom: 16px !important;
  border-top: 1px solid #e5e5e5;
}

/* line 94, app/assets/stylesheets/exams.scss */
.font-rem {
  font-size: 1rem;
  text-align: left;
  padding-left: 1rem;
}

/* line 100, app/assets/stylesheets/exams.scss */
.uk-alert-run {
  background: #f9ebff !important;
  color: #cc27e2 !important;
  border-color: rgba(248, 2, 154, 0.3) !important;
}

/* line 107, app/assets/stylesheets/exams.scss */
table.cops-exam-question-table.uk-table {
  table-layout: fixed !important;
  width: 100% !important;
}

/* line 112, app/assets/stylesheets/exams.scss */
table.cops-exam-question-table.uk-table th.cops-qcol-level,
table.cops-exam-question-table.uk-table td.cops-qcol-level {
  width: 200px !important;
  min-width: 200px !important;
  max-width: 200px !important;
  text-align: center !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

/* line 123, app/assets/stylesheets/exams.scss */
.mobile-exam-cards {
  padding: 4px 0;
}

/* line 127, app/assets/stylesheets/exams.scss */
.mobile-exam-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* line 135, app/assets/stylesheets/exams.scss */
.mobile-exam-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

/* line 143, app/assets/stylesheets/exams.scss */
.mobile-exam-title {
  font-size: 17px;
  font-weight: bold;
  margin: 0 0 8px;
  color: #24292f;
  word-break: break-word;
}

/* line 151, app/assets/stylesheets/exams.scss */
.mobile-exam-langs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/* line 158, app/assets/stylesheets/exams.scss */
.mobile-exam-actions {
  display: flex;
  gap: 8px;
}

/* line 164, app/assets/stylesheets/exams.scss */
.mobile-log-card--question .cops-log-q-actions {
  display: flex;
  flex-wrap: nowrap !important;
  width: 100%;
  gap: 8px;
}

/* line 171, app/assets/stylesheets/exams.scss */
.mobile-log-card--question .cops-log-q-action-btn {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  max-width: 50%;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 181, app/assets/stylesheets/exams.scss */
#exam-index table.cops-exams-index-table.cops-table-compact-row-actions--exams {
  table-layout: auto;
  width: 100%;
  max-width: 100%;
}

/* line 187, app/assets/stylesheets/exams.scss */
#exam-index table.cops-exams-index-table.cops-table-compact-row-actions--exams th.cops-exams-ix-col-title,
#exam-index table.cops-exams-index-table.cops-table-compact-row-actions--exams td.cops-exams-ix-col-title {
  min-width: 280px;
}

/* line 192, app/assets/stylesheets/exams.scss */
#exam-index table.cops-exams-index-table.cops-table-compact-row-actions--exams th.cops-exams-ix-col-actions,
#exam-index table.cops-exams-index-table.cops-table-compact-row-actions--exams td.cops-exams-ix-col-actions {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
  text-align: right;
  box-sizing: border-box;
}

/* line 201, app/assets/stylesheets/exams.scss */
#exam-index .cops-exams-ix-actions {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
}

/* line 209, app/assets/stylesheets/exams.scss */
#exam-index .cops-exams-ix-actions > a.uk-button,
#exam-index .cops-exams-ix-actions > span.uk-button,
#exam-index .cops-exams-ix-actions > button.uk-button {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 8px;
  font-size: 15px;
}
/*! gridster.js - v0.1.0 - 2012-10-20
* http://gridster.net/
* Copyright (c) 2012 ducksboard; Licensed MIT */.gridster{position:relative}.gridster>*{margin:0 auto;-webkit-transition:height .4s;-moz-transition:height .4s;-o-transition:height .4s;-ms-transition:height .4s;transition:height .4s}.gridster .gs_w{z-index:2;position:absolute}.ready .gs_w:not(.preview-holder){-webkit-transition:opacity .3s,left .3s,top .3s;-moz-transition:opacity .3s,left .3s,top .3s;-o-transition:opacity .3s,left .3s,top .3s;transition:opacity .3s,left .3s,top .3s}.ready .gs_w:not(.preview-holder){-webkit-transition:opacity .3s,left .3s,top .3s,width .3s,height .3s;-moz-transition:opacity .3s,left .3s,top .3s,width .3s,height .3s;-o-transition:opacity .3s,left .3s,top .3s,width .3s,height .3s;transition:opacity .3s,left .3s,top .3s,width .3s,height .3s}.gridster .preview-holder{z-index:1;position:absolute;background-color:#fff;border-color:#fff;opacity:.3}.gridster .player-revert{z-index:10!important;-webkit-transition:left .3s,top .3s!important;-moz-transition:left .3s,top .3s!important;-o-transition:left .3s,top .3s!important;transition:left .3s,top .3s!important}.gridster .dragging{z-index:10!important;-webkit-transition:all 0s!important;-moz-transition:all 0s!important;-o-transition:all 0s!important;transition:all 0s!important}
/* line 8, app/assets/stylesheets/pages.scss */
body .cops-pages-home-block {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

/* line 13, app/assets/stylesheets/pages.scss */
.cops-hero {
  background: #1565c0;
  border-radius: 6px;
  padding: 48px 32px;
  text-align: center;
  margin-top: 0;
  color: #fff;
}

/* line 22, app/assets/stylesheets/pages.scss */
.cops-hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

/* line 27, app/assets/stylesheets/pages.scss */
.cops-title {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 6px;
  margin: 0 0 8px;
  color: #fff;
  text-shadow: none;
}

/* line 36, app/assets/stylesheets/pages.scss */
.cops-subtitle {
  font-size: 16px;
  letter-spacing: 1px;
  color: #90caf9;
  margin: 0 0 20px;
  font-weight: normal;
}

/* line 44, app/assets/stylesheets/pages.scss */
.cops-desc {
  font-size: 18px;
  color: #e3f2fd;
  margin: 0;
  line-height: 1.8;
}

/* line 52, app/assets/stylesheets/pages.scss */
.cops-features {
  margin-top: 0;
}

/* line 56, app/assets/stylesheets/pages.scss */
.cops-feature-card {
  text-align: center;
  padding: 24px 16px !important;
  border-top: 4px solid #1565c0;
}

/* line 61, app/assets/stylesheets/pages.scss */
.cops-feature-card h4 {
  margin: 8px 0;
  font-size: 18px;
}

/* line 66, app/assets/stylesheets/pages.scss */
.cops-feature-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* line 74, app/assets/stylesheets/pages.scss */
.cops-feature-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 8px;
}

/* line 81, app/assets/stylesheets/pages.scss */
.cops-pages-home-cta {
  text-align: center;
  padding: 24px;
}

/* line 86, app/assets/stylesheets/pages.scss */
.cops-pages-home-cta-intro {
  margin: 0 0 15px;
  font-size: 16px;
}

/* line 91, app/assets/stylesheets/pages.scss */
.cops-pages-home-cta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

/* line 97, app/assets/stylesheets/pages.scss */
.cops-pages-home-cta-logout-form {
  margin: 0;
}

/* line 101, app/assets/stylesheets/pages.scss */
.cops-pages-home-cta-btn {
  display: block;
  margin-bottom: 5px;
}

/* line 106, app/assets/stylesheets/pages.scss */
.cops-pages-home-cta-btn:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  /* line 111, app/assets/stylesheets/pages.scss */
  .cops-pages-home-cta-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  /* line 116, app/assets/stylesheets/pages.scss */
  .cops-pages-home-cta-btn {
    margin-bottom: 0 !important;
  }
}

/* line 121, app/assets/stylesheets/pages.scss */
.cops-pages-home-credit {
  background: #f0f4ff;
}

/* line 125, app/assets/stylesheets/pages.scss */
.cops-pages-home-credit p {
  margin: 0;
  font-size: 16px;
  color: #555;
}

/* line 131, app/assets/stylesheets/pages.scss */
.cops-pages-howto > .uk-panel-title {
  margin-bottom: 15px;
}

/* line 141, app/assets/stylesheets/pages.scss */
.cops-manual-header {
  background: #1565c0;
  border-radius: 6px;
  padding: 32px;
  color: #fff;
  margin-bottom: 24px;
}

/* line 148, app/assets/stylesheets/pages.scss */
.cops-manual-header h1 {
  margin: 0 0 4px;
  font-size: 32px;
  color: #fff;
}

/* line 155, app/assets/stylesheets/pages.scss */
.cops-manual-subtitle {
  color: #90caf9;
  margin: 0;
  font-size: 16px;
}

/* line 161, app/assets/stylesheets/pages.scss */
.cops-manual-nav {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 12px 20px;
  margin-bottom: 24px;
}

/* line 167, app/assets/stylesheets/pages.scss */
.cops-manual-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

/* line 176, app/assets/stylesheets/pages.scss */
.cops-manual-nav li a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.4;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
}

/* line 187, app/assets/stylesheets/pages.scss */
.cops-manual-nav li a:hover {
  background: #1565c0;
  color: #fff;
  border-color: #1565c0;
}

/* line 195, app/assets/stylesheets/pages.scss */
.cops-manual-section {
  margin-bottom: 40px;
  scroll-margin-top: 16px;
}

/* line 200, app/assets/stylesheets/pages.scss */
.cops-section-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid #1565c0;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 211, app/assets/stylesheets/pages.scss */
.cops-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1565c0;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
}

/* line 225, app/assets/stylesheets/pages.scss */
.cops-code-block {
  background: #263238;
  color: #aed581;
  font-family: monospace;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 4px;
  margin: 8px 0;
  word-break: break-all;
  white-space: pre-wrap;
}

/* line 238, app/assets/stylesheets/pages.scss */
.cops-step-num {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: #1565c0;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto 8px;
}

/* line 250, app/assets/stylesheets/pages.scss */
.cops-step-label {
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 4px;
}

/* line 256, app/assets/stylesheets/pages.scss */
.cops-step-desc {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
/* line 6, app/assets/stylesheets/questions.scss */
.cops-code-editor-wrap {
  display: flex;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  background: #f8f9fa;
  overflow: hidden;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 13px;
  line-height: 1.6;
}

/* line 17, app/assets/stylesheets/questions.scss */
.cops-code-editor-gutter {
  min-width: 40px;
  padding: 8px 6px 8px 0;
  text-align: right;
  background: #eef0f2;
  color: #8b949e;
  border-right: 1px solid #d0d7de;
  user-select: none;
  pointer-events: none;
  overflow: hidden;
  flex-shrink: 0;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 13px;
  line-height: 1.6;
}

/* line 32, app/assets/stylesheets/questions.scss */
.cops-code-editor-gutter span {
  display: block;
  padding-right: 8px;
}

/* line 38, app/assets/stylesheets/questions.scss */
.cops-code-editor-textarea {
  flex: 1;
  padding: 8px 10px !important;
  border: 0 !important;
  background: transparent !important;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  outline: none;
  resize: vertical;
  min-height: 200px;
  white-space: pre;
  word-break: normal;
  overflow-wrap: normal;
  overflow-x: auto;
  box-sizing: border-box;
}

/* line 58, app/assets/stylesheets/questions.scss */
table.cops-questions-index-table {
  table-layout: fixed;
  width: 100%;
}

/* line 64, app/assets/stylesheets/questions.scss */
table.cops-questions-index-table:not(.cops-questions-index-table--student) col.cops-qix-col-check {
  width: 42px;
}

/* line 65, app/assets/stylesheets/questions.scss */
table.cops-questions-index-table:not(.cops-questions-index-table--student) col.cops-qix-col-title {
  width: 52%;
}

/* line 66, app/assets/stylesheets/questions.scss */
table.cops-questions-index-table:not(.cops-questions-index-table--student) col.cops-qix-col-lang {
  width: 8%;
}

/* line 67, app/assets/stylesheets/questions.scss */
table.cops-questions-index-table:not(.cops-questions-index-table--student) col.cops-qix-col-level {
  width: 5%;
}

/* line 68, app/assets/stylesheets/questions.scss */
table.cops-questions-index-table:not(.cops-questions-index-table--student) col.cops-qix-col-author {
  width: 10%;
}

/* line 69, app/assets/stylesheets/questions.scss */
table.cops-questions-index-table:not(.cops-questions-index-table--student) col.cops-qix-col-date {
  width: 8%;
}

/* line 70, app/assets/stylesheets/questions.scss */
table.cops-questions-index-table:not(.cops-questions-index-table--student) col.cops-qix-col-actions {
  width: 11%;
  min-width: 200px;
}

/* line 74, app/assets/stylesheets/questions.scss */
table.cops-questions-index-table--student col.cops-qix-col-title {
  width: 64%;
}

/* line 75, app/assets/stylesheets/questions.scss */
table.cops-questions-index-table--student col.cops-qix-col-lang {
  width: 11%;
}

/* line 76, app/assets/stylesheets/questions.scss */
table.cops-questions-index-table--student col.cops-qix-col-level {
  width: 6%;
}

/* line 77, app/assets/stylesheets/questions.scss */
table.cops-questions-index-table--student col.cops-qix-col-date {
  width: 9%;
}

/* line 78, app/assets/stylesheets/questions.scss */
table.cops-questions-index-table--student col.cops-qix-col-actions {
  width: 10%;
  min-width: 180px;
}

/* line 84, app/assets/stylesheets/questions.scss */
.question-content {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* line 88, app/assets/stylesheets/questions.scss */
.question-content h1, .question-content h2, .question-content h3, .question-content h4, .question-content h5, .question-content h6 {
  margin: 0.65em 0 0.35em;
  font-weight: 600;
  line-height: 1.35;
  color: #24292f;
}

/* line 94, app/assets/stylesheets/questions.scss */
.question-content h1 {
  font-size: 1.35em;
}

/* line 95, app/assets/stylesheets/questions.scss */
.question-content h2 {
  font-size: 1.22em;
}

/* line 96, app/assets/stylesheets/questions.scss */
.question-content h3 {
  font-size: 1.12em;
}

/* line 97, app/assets/stylesheets/questions.scss */
.question-content h4, .question-content h5, .question-content h6 {
  font-size: 1.05em;
}

/* line 99, app/assets/stylesheets/questions.scss */
.question-content p {
  margin: 0.45em 0;
  line-height: 1.65;
}

/* line 104, app/assets/stylesheets/questions.scss */
.question-content ul, .question-content ol {
  margin: 0.45em 0;
  padding-left: 1.5em;
  line-height: 1.55;
}

/* line 110, app/assets/stylesheets/questions.scss */
.question-content li {
  margin: 0.2em 0;
}

/* line 114, app/assets/stylesheets/questions.scss */
.question-content pre {
  margin: 0.5em 0;
  padding: 10px 12px;
  background: #f6f8fa;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow-x: auto;
  font-size: 0.92em;
  line-height: 1.45;
}

/* line 125, app/assets/stylesheets/questions.scss */
.question-content code {
  padding: 0.15em 0.4em;
  background: #f0f3f6;
  border-radius: 4px;
  font-size: 0.92em;
}

/* line 132, app/assets/stylesheets/questions.scss */
.question-content pre code {
  padding: 0;
  background: transparent;
  font-size: inherit;
}

/* line 138, app/assets/stylesheets/questions.scss */
.question-content iframe {
  max-width: 100%;
  width: 100%;
  min-height: 240px;
  border: 0;
  border-radius: 6px;
}

/* line 146, app/assets/stylesheets/questions.scss */
.question-content hr {
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #e0e0e0;
}

/* line 152, app/assets/stylesheets/questions.scss */
.question-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  vertical-align: middle;
}

/* line 158, app/assets/stylesheets/questions.scss */
.question-content a img {
  cursor: pointer;
  border: 1px solid #ddd;
}

/* line 161, app/assets/stylesheets/questions.scss */
.question-content a img:hover {
  opacity: 0.85;
  border-color: #2980b9;
}

/* line 169, app/assets/stylesheets/questions.scss */
.question-file-tab-body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

/* line 178, app/assets/stylesheets/questions.scss */
.question-file-tab-sidebar {
  flex: 0 0 200px;
  max-width: 100%;
  border-right: 1px solid #e8e8e8;
  padding-right: 12px;
  box-sizing: border-box;
}

/* line 186, app/assets/stylesheets/questions.scss */
.question-file-tab-label {
  font-size: 13px;
  color: #888;
  margin: 0 0 8px;
}

/* line 192, app/assets/stylesheets/questions.scss */
.question-file-tab-root .qfile-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 198, app/assets/stylesheets/questions.scss */
.question-file-tab-root .qfile-list-item {
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.35;
  word-break: break-all;
}

/* line 207, app/assets/stylesheets/questions.scss */
.question-file-tab-root .qfile-list-item:hover {
  background: #f0f3f6;
}

/* line 211, app/assets/stylesheets/questions.scss */
.question-file-tab-root .qfile-list-item-active {
  background: #e8f0fe;
  font-weight: bold;
}

/* line 216, app/assets/stylesheets/questions.scss */
.question-file-tab-main {
  flex: 1;
  min-width: 0;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

/* line 224, app/assets/stylesheets/questions.scss */
.qfile-content {
  display: none;
}

/* line 228, app/assets/stylesheets/questions.scss */
.qfile-content.qfile-content-active {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  min-width: 0;
}

/* line 236, app/assets/stylesheets/questions.scss */
.qfile-content-header {
  font-size: 13px;
  color: #888;
  margin: 0 0 10px;
  flex-shrink: 0;
}

/* line 243, app/assets/stylesheets/questions.scss */
.qfile-download {
  margin-left: 12px;
  font-size: 12px;
}

/* line 248, app/assets/stylesheets/questions.scss */
.qfile-preview-note {
  font-size: 12px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

/* line 255, app/assets/stylesheets/questions.scss */
.qfile-viewport {
  flex: 1 1 auto;
  min-height: 160px;
  max-height: min(70vh, 640px);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  overflow: auto;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  background: #fafbfc;
  -webkit-overflow-scrolling: touch;
}

/* line 269, app/assets/stylesheets/questions.scss */
.qfile-preview-table {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

/* line 277, app/assets/stylesheets/questions.scss */
.qfile-csv-table {
  font-size: 13px;
  font-family: ui-monospace, monospace;
  margin-bottom: 0;
  width: max-content;
  min-width: 100%;
  box-sizing: border-box;
}

/* line 285, app/assets/stylesheets/questions.scss */
.qfile-csv-table th,
.qfile-csv-table td {
  white-space: nowrap;
  vertical-align: top;
}

/* line 292, app/assets/stylesheets/questions.scss */
.qfile-preview-pre {
  display: block;
  box-sizing: border-box;
  margin: 0;
  padding: 12px 14px;
  background: #f6f8fa;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre;
  word-break: normal;
  overflow: visible;
  width: max-content;
  min-width: 100%;
  max-width: none;
}

/* line 311, app/assets/stylesheets/questions.scss */
.qfile-preview-md {
  box-sizing: border-box;
  margin: 0;
  padding: 10px 12px 14px;
  border: 0;
  border-radius: 0;
  background: #fff;
  overflow: visible;
  width: max-content;
  min-width: 100%;
  max-width: none;
}

/* line 325, app/assets/stylesheets/questions.scss */
.qfile-viewport .qfile-preview-md.question-content img,
.qfile-viewport .qfile-preview-md.question-content video {
  max-width: none;
  height: auto;
}
/*
Darko Bunic
http://www.redips.net/
Jun, 2011.
*/

body {
	font-family: arial;
	margin: 0px; /* for IE6 / IE7 */
}

/* add bottom margin between tables */
#table1,
#table2 {
	margin-bottom: 20px;
}

/* drag container */
#redips-drag {
	margin: auto;
	width: 100%;
	touch-action: none;
	-webkit-touch-callout: none;
	user-select: none;
}

/* set border for images inside DRAG region - exclude image margin inheritance */
/* my WordPress theme had some funny margin settings */
#redips-drag img {
	margin: 1px;
}

/* drag objects (DIV inside table cells) */
.redips-drag {
	cursor: move;
	margin: auto;
	margin-bottom: 1px;
	margin-top: 1px;
	z-index: 10;
	background-color: white;
	text-align: center;
	font-size: 10pt; /* needed for cloned object */
	width: 87px;
	height: 20px;
	line-height: 20px;
	/* round corners */
	border-radius: 4px; /* Opera, Chrome */
	-moz-border-radius: 4px; /* FF */
	touch-action: none;              /* ブラウザのスクロール・ズーム干渉を防ぎタッチドラッグを有効化 */
	-webkit-touch-callout: none;     /* iOS 長押しメニューを抑制 */
	-webkit-user-select: none;
	user-select: none;
}


/* drag objects border for the first table */
.t1 {
	border: 2px solid #499B33;
}
/* drag object border for the second table */
.t2 {
	border: 2px solid SteelBlue;
}
/* cloned objects - third table */
.t3 {
	border: 2px solid #FF8A58;
}
/* allow / deny access to cells marked with 'mark' class name */
.redips-mark {
	color: white;
	background-color: #9B9EA2;
}
/* trash cell */
.redips-trash {
	color: white;
	background-color: #2D4B7A;
}

/* tables */
div#redips-drag table {
	background-color: #e0e0e0;
	border-collapse: collapse;
}


/* input elements in dragging container */
div#redips-drag input {
	cursor: auto;
}
	/* height for input text in DIV element */
	div#drag #d13 input {
		height: 13px;
	}
	/* height for dropdown menu in DIV element */
	div#drag #d5 select {
		height: 20px;
	}

/* table cells */
div#redips-drag td {
	height: 32px;
	border: 1px solid white;
	text-align: center;
	font-size: 10pt;
	padding: 2px;
	touch-action: none;
}

/* "Click" button */
.button {
	margin-bottom: 2px;
	background-color: #6A93D4;
	color: white; 
	border-width: 1px;
	width: 44px;
	padding: 0px;
}


/* toggle checkboxes at the bottom */
.checkbox {
	margin-left: 13px;
	margin-right: 14px;
	width: 13px; /* needed for IE ?! */
}


/* message cell */
.message_line {
	padding-left: 10px;
	margin-bottom: 3px;
	font-size: 10pt;
	color: #888;
}
/*
Darko Bunic
http://www.redips.net/
Jun, 2011.
*/

body {
    font-family: arial;
    margin: 0px; /* for IE6 / IE7 */
}

/* add bottom margin between tables */
#table1{
    margin-bottom: 20px;
}

/* drag container */
#redips-drag {
    margin: auto;
    width: 100%;
}

/* set border for images inside DRAG region - exclude image margin inheritance */
/* my WordPress theme had some funny margin settings */
#redips-drag img {
    margin: 1px;
}

/* drag objects (DIV inside table cells) */
.redips-drag {
    cursor: move;
    margin: auto;
    margin-bottom: 1px;
    margin-top: 1px;
    z-index: 10;
    background-color: white;
    font-size: 14pt; /* needed for cloned object */
    width: 354px;
    height: 40px;
    line-height: 20px;
    /* round corners */
    border-radius: 4px; /* Opera, Chrome */
    -moz-border-radius: 4px; /* FF */
    word-break:keep-all;
    display: table-cell;
    vertical-align: middle;
}


/* drag objects border for the first table */
.t1 {
    border: 2px solid #499B33;
}
/* drag object border for the second table */
.t2 {
    border: 2px solid SteelBlue;
}
/* cloned objects - third table */
.t3 {
    border: 2px solid #FF8A58;
}
/* allow / deny access to cells marked with 'mark' class name */
.redips-mark {
    color: white;
    background-color: #9B9EA2;
}
/* trash cell */
.redips-trash {
    color: white;
    background-color: #2D4B7A;
}

/* tables */
div#redips-drag table {
    background-color: #e0e0e0;
    border-collapse: collapse;
}


/* input elements in dragging container */
div#redips-drag input {
    cursor: auto;
}
    /* height for input text in DIV element */
    div#drag #d13 input {
        height: 13px;
    }
    /* height for dropdown menu in DIV element */
    div#drag #d5 select {
        height: 20px;
    }

/* table cells */
div#redips-drag td {
    height: 42px;
    border: 1px solid white;
    font-size: 16pt;
    padding: 2px;
    margin: auto;
    width: 50%;
    display: table-cell;
    vertical-align: middle;
}

/* "Click" button */
.button {
    margin-bottom: 2px;
    background-color: #6A93D4;
    color: white; 
    border-width: 1px;
    width: 44px;
    padding: 0px;
}


/* toggle checkboxes at the bottom */
.checkbox {
    margin-left: 13px;
    margin-right: 14px;
    width: 13px; /* needed for IE ?! */
}


/* message cell */
.message_line {
    padding-left: 10px;
    margin-bottom: 3px;
    font-size: 10pt;
    color: #888;
}

#message{
    display: none;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */





@font-face {
  font-family: 'FontAwesome';
  src: url(/cable/assets/fontawesome-webfont.eot);
  src: url(/cable/assets/fontawesome-webfont.eot?#iefix) format('embedded-opentype'), url(/cable/assets/fontawesome-webfont.woff2) format('woff2'), url(/cable/assets/fontawesome-webfont.woff) format('woff'), url(/cable/assets/fontawesome-webfont.ttf) format('truetype'), url(/cable/assets/fontawesome-webfont.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * このファイル本体（manifest 閉じた後のブロック）は require_self を末尾に置き、
 * require_tree より後に出力して一覧の操作ボタン等を確実に上書きする。
 *






 */

/* ========== ベースフォントサイズ ========== */
body {
  font-size: 18px;
}

/* 全ページの uk-button 左右余白の単一ソース（ここを変えれば全体に反映） */
:root {
  --cops-btn-pad-x: 12px;
  --cops-btn-pad-x-small: 10px;
  --cops-btn-pad-x-mini: 6px;
}

/* ========== レイアウト: コンテナ幅を80%に拡大 ========== */
.uk-container {
  max-width: 80vw !important;
}

/* ========== 共通: 戻るリンク ========== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 16px;
  color: #0969da;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid #0969da;
  border-radius: 6px;
  background: #f6f8fa;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.back-link:hover {
  background: #e8f0fe;
  color: #0556b0;
  border-color: #0556b0;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .back-link {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}

/* ========== 共通: モバイル全幅ボタン ========== */
@media (max-width: 1024px) {
  .cops-mobile-full-btn {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    margin-bottom: 8px;
  }
}

/* スマホでPCレイアウト表示中の「モバイル版で表示」帯（テーマは cops-pc-navbar と同一） */
.cops-mobile-switch-bar {
  background: #1565c0 !important;
  text-align: center;
  padding: 10px 12px;
  padding-top: calc(10px + env(safe-area-inset-top, 0px));
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #0d47a1;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-sizing: border-box;
}
.cops-mobile-switch-bar a {
  color: #fff !important;
  text-decoration: none !important;
  display: block;
  line-height: 1.35;
}

/* ========== プレビューカード（演習カードと同スタイル） ========== */
.preview-card {
  background: #f6f8fa;
  border: 1px solid #d0d7de;
  border-left: 3px solid #0969da;
  border-radius: 4px;
  margin: 2px 0;
  padding: 6px 10px;
  box-sizing: border-box;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 14px;
  white-space: pre-wrap;
}
.preview-card-dummy {
  border-left-color: #cf222e;
}
.preview-card-fixed {
  background: #f0fff4;
  border-left-color: #1a7f37;
}
.preview-card .font-rem {
  width: 100%;
}
.preview-card .card-natural-toggle {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  white-space: normal;
}
.preview-card .card-natural-view,
.preview-card .card-source-view {
  white-space: normal;
}
.preview-card .card-natural-toggle .font-rem {
  white-space: pre;
  overflow-x: auto;
}

.preformatted-output {
  white-space: pre-wrap;
  font-family: monospace;
  font-size: inherit;
  margin: 0;
}

/* ログインページ */
.cops-login-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 16px;
}
.cops-login-box {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #d0d7de;
  overflow: hidden;
}
.cops-login-logo {
  background: #1565c0;
  padding: 28px 32px;
  text-align: center;
  color: #fff;
}
.cops-login-logo h1 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 6px;
  margin: 0 0 4px;
  color: #fff;
}
.cops-login-logo p {
  font-size: 13px;
  color: #90caf9;
  margin: 0;
}
.cops-login-form {
  padding: 28px 32px;
}
.cops-field {
  margin-bottom: 16px;
}
.cops-field label {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
  color: #333;
}
.cops-field input[type=text],
.cops-field input[type=email],
.cops-field input[type=password] {
  width: 100%;
  box-sizing: border-box;
}
.cops-remember {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cops-remember label {
  margin: 0;
  font-weight: normal;
}
.cops-login-btn {
  height: 40px;
  font-size: 18px;
}

/* ========== ログ タイムライン ========== */
.cops-log-step {
  border: 1px solid #b8d4f0;
  border-radius: 6px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}
.cops-log-step-header {
  background: #e8f0fe;
  border-bottom: 1px solid #b8d4f0;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.cops-log-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #1565c0;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: bold;
  flex-shrink: 0;
}
.cops-log-step-label {
  font-weight: bold;
  color: #333;
  flex: 1;
}
.cops-log-event-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 1px 8px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
}
.cops-log-exec {
  background: #e3f2fd;
  color: #1565c0;
}
.cops-log-submit {
  background: #e8f5e9;
  color: #2e7d32;
}

/* 左カラム: カード縦並び */
.cops-log-card-list {
  padding: 0;
}
.cops-log-card-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 3px 8px;
  border-bottom: 1px solid #f0f0f0;
}
.cops-log-card-row:last-child {
  border-bottom: none;
}
.cops-log-card-idx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  background: #cfd8dc;
  color: #37474f;
  border-radius: 3px;
  font-size: 10px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}
.cops-log-indent-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  padding: 0 6px;
  height: 18px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: bold;
  color: #0d47a1;
  background: #e3f2fd;
  border: 1px solid #90caf9;
}
.cops-log-card-text {
  margin: 0;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 14px;
  white-space: pre;
  color: #333;
  flex: 1;
  overflow-x: auto;
  line-height: 1.5;
}
.cops-log-card-text--indented {
  background: #f8fafc;
  border-radius: 4px;
  padding: 4px 8px;
  box-sizing: border-box;
  border-left: 3px solid #1565c0;
}

/* 右カラム: 組み立てコード（演習ページと同じ CodeMirror / Dracula） */
.cops-log-code-wrap {
  padding: 0;
  height: auto;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #282a36;
  box-sizing: border-box;
}
.cops-log-cm-root {
  min-height: 80px;
}
.cops-log-cm-root .CodeMirror {
  font-family: 'Consolas', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 18px;
  line-height: 1.55;
  height: auto;
}
.cops-log-cm-root .CodeMirror-scroll {
  min-height: 80px;
}
.cops-log-cm-root .CodeMirror-linenumber {
  padding: 0 14px 0 10px !important;
  min-width: 2.25em;
  color: #6272a4;
}
.cops-log-cm-root .CodeMirror-gutters {
  border-right: 1px solid #44475a;
  background: #282a36;
}
.cops-log-cm-src {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.cops-log-cm-root--inited .cops-log-cm-src {
  display: none;
}

/* 学習ログ: ステップ間の操作タイムライン */
.cops-log-step-transition {
  margin: 16px 0 8px;
  padding: 10px 12px;
  background: #f0f7ff;
  border: 1px solid #c8e1ff;
  border-radius: 8px;
}
.cops-log-step-transition-title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #0969da;
  margin-bottom: 8px;
}
.cops-log-step-transition-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.cops-log-ev-pill {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 999px;
  background: #eaeef2;
  color: #24292f;
  border: 1px solid #d0d7de;
}
.cops-log-ev-pill--header {
  font-size: 11px;
}
/* カード操作（配置・移動・インデント）: 青系 */
.cops-log-ev-pill--card {
  background: #ddf4ff;
  color: #0550ae;
  border-color: #54aeff;
}
/* 入力操作（選択・ブランク）: 緑系 */
.cops-log-ev-pill--input {
  background: #dafbe1;
  color: #116329;
  border-color: #4ac26b;
}
/* 実行系（実行・診断・提出）: オレンジ系 */
.cops-log-ev-pill--exec {
  background: #fff8c5;
  color: #7d4e00;
  border-color: #d4a72c;
}
/* ナビ系（タブ・問題切替・標準入力）: 薄グレー */
.cops-log-ev-pill--nav {
  background: #f6f8fa;
  color: #57606a;
  border-color: #d0d7de;
}
.cops-log-step-header-events {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-left: 8px;
}

/* 実行結果 */
.cops-log-run-result {
  background: #e8f0fe;
  color: #1a1a2e;
  padding: 6px 12px;
  font-size: 14px;
  border-top: 1px solid #b8d4f0;
  clear: both;
  position: relative;
  z-index: 1;
}
.cops-log-run-label {
  color: #1565c0;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 3px;
}
.cops-log-run-result pre {
  margin: 0;
  color: #1a1a2e;
  font-family: monospace;
  font-size: 14px;
  white-space: pre-wrap;
}

/* ========== フラットデザイン: ボタン全般 ========== */
.uk-button {
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  background-color: #e0e0e0 !important;
  color: #333 !important;
  border-radius: 4px !important;
  font-size: 18px !important;
  transition: background-color 0.15s !important;
  height: 41px !important;
  min-height: 41px !important;
  line-height: 41px !important;
  padding-left: var(--cops-btn-pad-x) !important;
  padding-right: var(--cops-btn-pad-x) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* リンク型・テキスト型は横パディングなし（UIKit 既定に近い見た目） */
.uk-button.uk-button-link,
.uk-button.uk-button-text {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* ミニ・スモール・ラージも左右だけトークンで統一 */
.uk-button.uk-button-mini {
  height: 20px !important;
  min-height: 20px !important;
  line-height: 20px !important;
  font-size: 11px !important;
  padding-left: var(--cops-btn-pad-x-mini) !important;
  padding-right: var(--cops-btn-pad-x-mini) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.uk-button.uk-button-small {
  height: 25px !important;
  min-height: 25px !important;
  line-height: 25px !important;
  font-size: 12px !important;
  padding-left: var(--cops-btn-pad-x-small) !important;
  padding-right: var(--cops-btn-pad-x-small) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.uk-button.uk-button-large {
  padding-left: var(--cops-btn-pad-x) !important;
  padding-right: var(--cops-btn-pad-x) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.uk-button:hover,
.uk-button:focus {
  background-color: #d0d0d0 !important;
  background-image: none !important;
  box-shadow: none !important;
}
.uk-button:active,
.uk-button.uk-active {
  background-color: #bdbdbd !important;
  background-image: none !important;
  box-shadow: none !important;
}
.uk-button-primary {
  background-color: #0969da !important;
  color: #fff !important;
}
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #0550ae !important;
}
.uk-button-primary:active,
.uk-button-primary.uk-active {
  background-color: #033d8b !important;
}
.uk-button-success {
  background-color: #1a4472 !important;
  color: #fff !important;
}
.uk-button-success:hover,
.uk-button-success:focus {
  background-color: #153761 !important;
}
.uk-button-success:active,
.uk-button-success.uk-active {
  background-color: #102a4f !important;
}
.uk-button-danger {
  background-color: #cf222e !important;
  color: #fff !important;
}
.uk-button-danger:hover,
.uk-button-danger:focus {
  background-color: #a40e26 !important;
}
.uk-button-danger:active,
.uk-button-danger.uk-active {
  background-color: #82071e !important;
}
.uk-button:disabled {
  background-color: #f0f0f0 !important;
  background-image: none !important;
  color: #aaa !important;
  border: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

/* ========== ページネーション: フラットデザインに統一 ========== */
.uk-pagination {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 4px !important;
  list-style: none !important;
  margin: 16px 0 !important;
  padding: 0 !important;
}
.uk-pagination > li > a,
.uk-pagination > li > span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 38px !important;
  height: 38px !important;
  padding: 0 10px !important;
  font-size: 16px !important;
  line-height: 1 !important;
  border: 1px solid #d0d7de !important;
  border-radius: 6px !important;
  background: #f6f8fa !important;
  color: #24292f !important;
  text-decoration: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transition: background 0.15s, border-color 0.15s !important;
}
.uk-pagination > li > a:hover {
  background: #e8f0fe !important;
  border-color: #0969da !important;
  color: #0969da !important;
}
.uk-pagination > li.uk-active > span {
  background: #0969da !important;
  border-color: #0969da !important;
  color: #fff !important;
  font-weight: bold !important;
}
.uk-pagination > li.uk-disabled > a,
.uk-pagination > li.uk-disabled > span {
  background: #f6f8fa !important;
  border-color: #d0d7de !important;
  color: #aaa !important;
  cursor: default !important;
}

.exam-eq-pagination-bar {
  clear: both;
}

/* ========== バッジ: 文字サイズを見やすく ========== */
.uk-badge {
  font-size: 14px !important;
  padding: 3px 8px !important;
  line-height: 1.4 !important;
  min-height: auto !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
}
.uk-panel-badge.uk-badge {
  font-size: 14px !important;
  padding: 2px 8px !important;
  border: none !important;
}

/* ========== ナビバー: フラット化 ========== */
.uk-navbar {
  background: #1565c0 !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
}
.uk-navbar-nav > li > a {
  color: #fff !important;
  text-shadow: none !important;
  font-size: 18px !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
}
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li.uk-active > a {
  background: #0d47a1 !important;
  background-image: none !important;
  color: #fff !important;
}

/* PCレイアウト: UIKit navbar 非依存の1行ヘッダー（UIKit3 と競合しない） */
.cops-pc-navbar {
  background: #1565c0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
.cops-pc-navbar__list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  width: 100% !important;
  min-height: 40px !important;
  height: 40px !important;
  max-height: 40px !important;
  box-sizing: border-box !important;
}
.cops-pc-navbar__item {
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  padding: 0 !important;
  max-height: 40px !important;
}
.cops-pc-navbar__item--push {
  margin-left: auto !important;
}
.cops-pc-navbar__link,
.cops-pc-navbar__text {
  box-sizing: border-box !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  align-content: center !important;
  height: 40px !important;
  max-height: 40px !important;
  padding: 0 10px !important;
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 18px !important;
  color: #fff !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
}
.cops-pc-navbar__link .fa,
.cops-pc-navbar__text .fa {
  flex-shrink: 0 !important;
  line-height: 1 !important;
  font-size: 1em !important;
}
.cops-pc-navbar__link:hover,
.cops-pc-navbar__item--active .cops-pc-navbar__link {
  background: #0d47a1 !important;
  color: #fff !important;
}
/* 狭いビューポートでもグローバルナビを消さない（消すと PC レイアウト時にヘッダーが完全に無くなる）。
   デスクトップ UA + 狭いウィンドウ / DevTools の「幅だけスマホ」では mobile_request? が false のままなので、
   以前はここで display:none にしており /pages/manual 等でナビが見えなかった。 */
@media (max-width: 639px) {
  .cops-pc-navbar {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
  }
  .cops-pc-navbar__list {
    width: max-content;
    min-width: 100%;
  }
}
/* PC専用（タブレット・スマホでは非表示） */
.cops-pc-only {
  display: none !important;
}
@media (min-width: 1025px) {
  .cops-pc-only {
    display: list-item !important;
  }
}

/* ========== テーブル: 旧 UIKit2 と同じセル余白・縦位置・文字（UIKit3 は padding 16px 12px 等）========== */
.uk-table td,
.uk-table th {
  padding: 8px 8px !important;
  vertical-align: middle !important;
  font-size: 18px !important;
}

/* ========== パネル: フラット化 ========== */
/* UIkit3 では uk-panel-box クラス自体が消えるため padding を明示（UIkit2 互換） */
.uk-panel-box {
  background: #fff !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 1px solid #d0d7de !important;
  padding: 15px !important;
}
/* UIkit3 では uk-panel-title クラスが消えるため UIkit2 互換スタイルを定義（旧: パネル見出しは本文と同程度の 18px） */
.uk-panel-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  color: #444;
}

/* ========== アラート: UIkit3 は背景グレーだが UIkit2 の水色に統一 ========== */
/* 演習ページのボタン・stdin エリア（action-button-field）を UIkit2 の水色に */
.uk-alert.action-button-field {
  background: #ebf7fd !important;
  color: #2d7091 !important;
  border: 1px solid #ced7df !important;
  padding: 10px !important;
}

/* 担当学習者: 説明（CDN の UIkit3 では枠が弱い → UIkit2 相当の水色・枠・高さ） */
#managements-index .cops-mgmt-intro.uk-alert {
  background: #ebf7fd !important;
  color: #2d7091 !important;
  border: 1px solid rgba(45, 112, 145, 0.3) !important;
  border-radius: 4px !important;
  padding: 10px !important;
  text-shadow: 0 1px 0 #fff;
}
#managements-index .cops-mgmt-intro.uk-alert > p {
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
}
#managements-index .cops-mgmt-intro--mobile.uk-alert > p {
  font-size: 14px !important;
}

/* ========== 問題詳細プレビュー: 部品の縦余白を半分に ========== */
#question-show .uk-alert:not(.action-button-field) {
  padding: 2px 10px !important;
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}

/* ========== フォーム入力: 文字サイズ・高さ統一（ボタンと揃える） ========== */
input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=search],
select {
  font-size: 18px !important;
  height: 41px !important;
  line-height: 41px !important;
  box-sizing: border-box !important;
}
select.middle-select {
  font-size: 14px !important;
  height: 22px !important;
  line-height: normal !important;
  padding: 1px 4px !important;
  box-sizing: border-box !important;
}
textarea {
  font-size: 18px !important;
}

/* UIKit3 の uk-form-large 既定が旧より小さい場合がある → 通常入力と同じ 18px */
input.uk-form-large,
select.uk-form-large,
textarea.uk-form-large {
  font-size: 18px !important;
}

/* 検索入力欄を大きく表示 */
.cops-search-input-xl {
  font-size: 32px !important;
  height: 64px !important;
  line-height: 64px !important;
  padding: 0 12px !important;
}

.cops-md-editor {
  margin-bottom: 16px;
}
.cops-md-split {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.cops-md-pane {
  width: 50%;
  min-width: 0;
}
.cops-md-pane-left {
  width: var(--left-w, 50%);
}
.cops-md-pane-right {
  width: calc(100% - var(--left-w, 50%) - 10px);
}
.cops-md-divider {
  width: 18px;
  cursor: col-resize;
  align-self: stretch;
  position: relative;
  background: #f6f8fa;
  border-left: 2px double #f6f8fa;
  border-right: 2px double #f6f8fa;
}
.cops-md-divider::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 50%;
  background: #6f6f6f;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.cops-md-height-handle {
  height: 16px;
  cursor: row-resize;
  margin-top: 4px;
  border-radius: 4px;
  position: relative;
  background: #f6f8fa;
  border-top: 2px double #f6f8fa;
  border-bottom: 2px double #f6f8fa;
}
.cops-md-height-handle::after {
  content: '↕ ドラッグして高さ変更';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1px 8px;
  border-radius: 999px;
  background: #6f6f6f;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.cops-md-pane-title {
  border: 1px solid #d0d7de;
  border-bottom: 0;
  background: #f6f8fa;
  padding: 8px 10px;
  font-weight: bold;
  min-height: 38px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.cops-md-help {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 8px;
  font-size: 12px;
  color: #556;
}
.cops-md-pair-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 12px;
}
.cops-md-pair-size-label {
  min-width: 42px;
  text-align: right;
  color: #334;
  font-weight: bold;
}
.cops-md-input {
  min-height: var(--pane-h, 420px);
  height: var(--pane-h, 420px);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  resize: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.cops-md-dragover {
  border: 2px dashed #1976d2 !important;
  background: #e3f2fd !important;
}
.cops-md-drop-hint {
  margin-top: 6px;
  padding: 6px 8px;
  border: 1px dashed #90caf9;
  border-radius: 6px;
  font-size: 12px;
  color: #3f51b5;
  background: #f7fbff;
}
.cops-md-preview-wrap {
  border: 1px solid #d0d7de;
  border-top: 0;
  border-radius: 6px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: #fff;
  min-height: var(--pane-h, 420px);
  height: var(--pane-h, 420px);
  position: relative;
}
.cops-md-size-slider {
  width: 140px;
}
.cops-md-size-input {
  width: 72px;
  height: 26px !important;
  line-height: 26px !important;
  font-size: 14px !important;
  padding: 0 6px !important;
}
.cops-md-floating-toolbar {
  position: absolute;
  z-index: 30;
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(33, 33, 33, 0.92);
  color: #fff;
  border-radius: 6px;
  padding: 4px 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}
.cops-md-floating-toolbar .cops-md-size-label {
  min-width: 40px;
  text-align: right;
  font-size: 12px;
}
.cops-md-preview {
  padding: 10px;
  max-height: calc(var(--pane-h, 420px) - 12px);
  overflow: auto;
  box-sizing: border-box;
  height: 100%;
}
.cops-md-preview pre {
  background: #f6f8fa;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  padding: 8px;
  overflow-x: auto;
}
.cops-md-image,
.question-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  cursor: pointer;
}
.cops-md-video,
.question-content video {
  max-width: 100%;
  border-radius: 6px;
  cursor: pointer;
}
.cops-md-media-selected {
  outline: 3px solid #1976d2;
  outline-offset: 2px;
}
.cops-md-video-thumb {
  display: inline-block;
  position: relative;
  max-width: 480px;
  width: 100%;
}
.cops-md-video-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.cops-md-video-thumb span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
}

@media (max-width: 959px) {
  .cops-md-split {
    display: block;
  }
  .cops-md-pane {
    width: 100%;
  }
  .cops-md-pane-left,
  .cops-md-pane-right {
    width: 100%;
  }
  .cops-md-divider,
  .cops-md-height-handle {
    display: none;
  }
  .cops-md-pane-right {
    margin-top: 10px;
  }
}

#test-cases-table textarea,
#new-test-cases-table textarea {
  font-size: 16px !important;
  line-height: 1.25 !important;
  padding: 4px 6px !important;
}

/* ========== 一覧の操作ボタン「タイル」（旧は未使用。logs 学習者一覧の cops-row-action-tile のみ）========== */
a.uk-button.cops-row-action-tile,
button.uk-button.cops-row-action-tile {
  padding-left: var(--cops-btn-pad-x) !important;
  padding-right: var(--cops-btn-pad-x) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  height: 41px !important;
  min-height: 41px !important;
  max-height: 41px !important;
  width: calc(7rem - 2em) !important;
  min-width: calc(7rem - 2em) !important;
  max-width: calc(7rem - 2em) !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  vertical-align: middle !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  text-transform: none !important;
}

/* logs 学習者一覧: 詳細だけタイル寸法、横並び flex はそのまま */
#logs-teacher-results td .uk-flex.uk-flex-middle > a.uk-button.cops-row-action-tile {
  flex: 0 0 auto;
}

/* 試験一覧: 最終列は cops-table-ellipsis の td:last-child が white-space:normal のため折り返す → 受験＋結果を横並びに */
#exam-index table.cops-exams-index-table > tbody > tr > td:last-child {
  white-space: nowrap !important;
}

/* 試験一覧のボタン間隔: exams.scss の #exam-index .cops-exams-ix-actions（gap:5px）に統一 */

/* ========== logs/index 試験別進捗（PC）: 結果列の幅・配置 ==========
 * cops-table-ellipsis では td:last-child が max-width:none のため、100% 幅テーブルで最終列が余白を吸いがち。
 * .cops-table-ellipsis を併記して max-width: max-content で列をボタン幅＋セル余白に抑える。
 * ボタン寸法（.cops-logs-exam-result-match-search）は変更しない。 */
table.cops-table-ellipsis.cops-logs-exam-stats-pc th.cops-logs-exam-result-th,
table.cops-table-ellipsis.cops-logs-exam-stats-pc td.cops-logs-exam-result-td,
table.cops-table-ellipsis.cops-logs-exam-stats-pc thead th.cops-logs-exam-result-th:last-child,
table.cops-table-ellipsis.cops-logs-exam-stats-pc tbody td.cops-logs-exam-result-td:last-child {
  width: 1px !important;
  white-space: nowrap !important;
  text-align: center !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
}

/* ========== logs/index 試験別進捗（PC）: 結果リンク = 検索 submit と同寸 ==========
 * 検索は #cops-logs-exam-pc-search（クラス・インラインでサイズを変えないこと／CLAUDE.md）。
 * 下記は application.css の .uk-button と同値（テーブル内・継承の差を潰すため明示）。 */
table.cops-table-ellipsis.cops-logs-exam-stats-pc td.cops-logs-exam-result-td a.uk-button.cops-logs-exam-result-match-search {
  font-size: 18px !important;
  height: 41px !important;
  min-height: 41px !important;
  line-height: 41px !important;
  padding-left: var(--cops-btn-pad-x) !important;
  padding-right: var(--cops-btn-pad-x) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  box-sizing: border-box !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

/* ========== ページヘッダー（旧 COPS4: pages.scss の帯デザイン。require_self が最後のためここで確定させる）========== */
.cops-manual-header {
  background: #1565c0;
  border-radius: 6px;
  color: #fff;
  border-bottom: none;
  box-sizing: border-box;
}
.cops-manual-header h1 {
  margin: 0 0 4px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.cops-manual-subtitle {
  color: #90caf9;
  margin: 0;
  font-size: 16px;
}

/* 青ヘッダー: タイトル左・操作ボタン右（UIKit3 は uk-flex-between。UIKit2 名残クラスのフォールバック） */
.cops-manual-header > .uk-flex.uk-flex-between,
.cops-manual-header > .uk-flex.uk-flex-middle.uk-flex-between {
  width: 100%;
  box-sizing: border-box;
}
.uk-flex.uk-flex-space-between {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* ========== exams/show: 問題ステータスバッジ ========== */
.cops-exam-show-q-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 4px;
}
.cops-exam-show-q-header .cops-exam-show-q-title {
  margin: 0;
}
.cops-exam-status-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}
.cops-exam-status-correct { background: #27ae60; color: #fff; }
.cops-exam-status-pass { background: #e6a817; color: #fff; }
.cops-exam-status-inprogress { background: #f39c12; color: #fff; }
.cops-exam-status-notstarted { background: #e74c3c; color: #fff; }
.cops-exam-status-date { font-size: 12px; color: #888; margin-left: 4px; vertical-align: middle; }

/* ========== users/edit・devise/registrations#edit: 更新・キャンセル同寸（submit と a。表記「更新」）========== */
.cops-user-edit-actions {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}
.cops-user-edit-actions .cops-user-edit-btn,
.cops-reg-edit-actions .cops-reg-edit-btn {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  height: 41px !important;
  min-height: 41px !important;
  line-height: 41px !important;
}
.cops-user-edit-actions input[type="submit"].cops-user-edit-btn,
.cops-reg-edit-actions input[type="submit"].cops-reg-edit-btn {
  -webkit-appearance: none;
  appearance: none;
}
.cops-user-edit-actions a.cops-user-edit-btn,
.cops-reg-edit-actions a.cops-reg-edit-btn {
  text-decoration: none !important;
}

/* ========== スマホ・タブレット: プロフィール変更など cops-reg-edit-actions ========== */
.cops-reg-edit-actions {
  display: flex !important;
  gap: 8px !important;
  width: 100% !important;
  box-sizing: border-box;
}

/* ========== logs: 解答履歴モーダル（UIKit .uk-modal-dialog の transform/margin と競合しないよう flex 中央寄せ） ========== */
#cops-log-history-modal.cops-log-history-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10050;
  background: rgba(0, 0, 0, 0.45);
  /* overflow:auto を外す: Safari でフレックス中央寄せが無効化されるため */
  overflow: hidden;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

#cops-log-history-modal.cops-log-history-overlay.uk-open {
  display: flex !important;
}

#cops-log-history-modal.cops-log-history-overlay .cops-log-history-dialog.uk-modal-dialog {
  position: relative;
  flex: 0 1 auto;
  align-self: center;
  transition: none !important;
  box-sizing: border-box;
  opacity: 1 !important;
  margin: 0 !important;
  /* UIKit .uk-open .uk-modal-dialog の translateY(0) より詳細度高く無効化 */
  transform: none !important;
  -webkit-transform: none !important;
  width: 420px;
  max-width: calc(100% - 32px);
  max-height: min(90vh, calc(100vh - 32px));
  overflow-y: auto;
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/*# sourceMappingURL=application.css-8ac2368e3116087d4452644fff235bac17a364efa85c6cdd869069ded6ddb2a5.map */
