* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Lucida Grande", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
        "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    color: #333;
    -webkit-text-size-adjust: 100%;
}

body:has(:modal) {
    overflow: hidden;
}

a {
    color: #1f5466;
    text-decoration: none;
}

a:hover {
    color: #ec9700;
    text-decoration: underline;
}
a[data-broken] {
    cursor: not-allowed;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin: 0;
    white-space: normal;
}

th,
td {
    padding: 4px 6px;
    vertical-align: middle;
}

th,
thead td {
    vertical-align: middle;
    text-align: center;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

em,
i {
    font-family: "Lucida Grande", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
        Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    clear: both;
    background: transparent;
    margin: 0;
}

h1 {
    font-size: 1.4em;
}

h2 {
    font-size: 1.2em;
}

h3 {
    font-size: 1.1em;
}

h4,
h5,
h6 {
    font-size: 1em;
}

small {
    font-size: 0.68em;
}

p {
    margin: 0 0 0.8em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

ul li {
    margin-left: 1.4em;
}

ol li {
    margin-left: 2.32em;
    text-indent: -0.34em;
}

sub {
    font-size: 0.78em;
    line-height: 1em;
    vertical-align: sub;
}

sup {
    font-size: 0.78em;
    line-height: 1em;
    vertical-align: super;
}

button {
    color: inherit;
}

img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
    image-rendering: -webkit-optimize-contrast;
}
.component-account {
    display: flex;
    align-items: center;
    gap: 12px;
}

.component-account .icon {
    font-size: 1.3em;
}

.component-account .account-info {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    line-height: 1.3;
}

.component-account .account-name {
    font-size: 1em;
}

.component-account .account-prefix,
.component-account .account-suffix {
    font-size: 0.85em;
}

.component-account .account-prefix {
    flex: 1 1 100%;
}
.component-form {
    flex: 1 1 auto;
}
.component-form-submit .message-flash {
	margin: 0 0 12px 0;
}

.component-form-submit .message-flash:empty {
	display: none;
}
.component-field {
    display: flex;
    flex-direction: column;
}
.component-field .field-title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    text-align: right;
    font-weight: bold;
    flex: 0 0 auto;
}
.component-field .field-title-label {
    white-space: pre-line;
}

[data-wrap] .component-field > .field-title {
    border: none;
    margin: 0;
}

.component-field .field-title:empty {
    border: none;
}

.component-field .field-input {
    display: flex;
    flex: 0 0 auto;
}

.component-field .field-description {
    font-size: 0.82em;
    white-space: pre-line;
    margin-top: 4px;
}
.component-field .field-description:empty {
    display: none;
}

.component-field .field-errors {
    color: #d51d39;
    margin-top: 4px;
    font-weight: bold;
    white-space: pre-line;
}
.component-field .field-errors:empty {
    display: none;
}

.component-field .field-required {
    font-size: 0.8em;
    font-weight: normal;
    color: #d51d39;
}

.component-field.field-hidden {
    display: none !important;
}

.component-field.has-error > .field-input {
    background: #fee;
}
.component-field-button .field-input {
    gap: 6px;
}
.component-field-button .component-button {
    flex: 1 1 auto;
}
input[type="text"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"] {
    appearance: none;
    display: inline-flex;
    align-items: center;
    height: 2em;
    max-width: 100%;
    margin: 0;
    padding: 0.4em;
    font: inherit;
    line-height: 1.3;
    border: solid 1px #d9d9d9;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    background: transparent;
    transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
    outline: none;
    color: inherit;
}

input[type="text"]:only-child,
input[type="search"]:only-child,
input[type="tel"]:only-child,
input[type="url"]:only-child,
input[type="email"]:only-child,
input[type="password"]:only-child {
    flex: 1 1 1em;
    max-width: 28em;
}

input[type="file"] {
    font: inherit;
    max-width: 100%;
}

input[type="text"]:focus:not(:read-only),
input[type="text"]:hover:not(:read-only),
input[type="search"]:focus:not(:read-only),
input[type="search"]:hover:not(:read-only),
input[type="tel"]:focus:not(:read-only),
input[type="tel"]:hover:not(:read-only),
input[type="url"]:focus:not(:read-only),
input[type="url"]:hover:not(:read-only),
input[type="email"]:focus:not(:read-only),
input[type="email"]:hover:not(:read-only),
input[type="password"]:focus:not(:read-only),
input[type="password"]:hover:not(:read-only),
input[type="datetime"]:focus:not(:read-only),
input[type="datetime"]:hover:not(:read-only),
input[type="date"]:focus:not(:read-only),
input[type="date"]:hover:not(:read-only),
input[type="month"]:focus:not(:read-only),
input[type="month"]:hover:not(:read-only),
input[type="week"]:focus:not(:read-only),
input[type="week"]:hover:not(:read-only),
input[type="time"]:focus:not(:read-only),
input[type="time"]:hover:not(:read-only),
input[type="datetime-local"]:focus:not(:read-only),
input[type="datetime-local"]:hover:not(:read-only),
input[type="number"]:focus:not(:read-only),
input[type="number"]:hover:not(:read-only) {
    border-color: #999999;
    box-shadow: 0 0 5px #999999;
}

input[disabled] {
    background-color: #dddddd;
}

input {
    letter-spacing: 0.08em;
}

input[type="radio"],
input[type="checkbox"] {
    vertical-align: middle;
    width: auto;
    margin-right: 4px;
}

input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
    -webkit-appearance: none;
    border-radius: 0;
    form-sizing: content;
}

fieldset {
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    padding: 0.6em 0.8em 1.2em 0.8em;
}

legend {
    margin: 0;
    padding: 0 0.5em;
}

.component-input.has-error {
    background: #fee;
}

.component-input::placeholder {
    color: #aaa;
}
.component-field-login-submit .component-button-login {
    flex: 0 0 13em;
    padding: 0.5em;
}
.component-button {
    appearance: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 6em;
    min-height: 2em;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    backface-visibility: hidden;

    font: inherit;
    line-height: 1.3;
    padding: 0.2em 0.4em;
    border: solid 1px #d9d9d9;
    background: transparent;
    transition: box-shadow 0.45s, border-color 0.45s, opacity 0.2s ease-in-out;
}

.component-button:focus,
.component-button:active,
.component-button:hover {
    color: inherit;
    text-decoration: none;
    outline: none;
    border-color: #999999;
    box-shadow: 0 0 5px #999999;
    opacity: 0.7;
}

.component-button.active {
    opacity: 0.6;
    cursor: default;
}

.component-button[disabled],
.component-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.component-button .icon-head {
    margin-right: 6px;
}

.component-button .icon-tail {
    margin-left: 6px;
}
.component-button-forward {
    background: #2b6991;
    color: #fff;
    cursor: pointer;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.2), -1px 1px 0 rgba(0, 0, 0, 0.2);
    border-color: #c4c4c4;
    box-shadow: inset -1px -1px 3px rgba(0, 41, 54, 0.4);
}

.component-button-forward:focus,
.component-button-forward:active,
.component-button-forward:hover {
    color: #fff;
}
.component-button-default {
    background: #fcfcfc;
    border-color: #ccc;
    color: #666;
}

.component-button-default:focus,
.component-button-default:active,
.component-button-default:hover {
    color: #666;
}
.component-election-promote {
    margin-top: 1em;
}
.component-election-promote .election-status {
    padding: 8px;
    background: #dde7ef;
}

.component-election-promote .meta-item {
    display: flex;
    gap: 12px;
}

.component-election-promote .meta-label {
    flex: 0 0 7em;
    text-align: right;
}

.component-election-promote .meta-value {
    flex: 1 1 auto;
    font-weight: bold;
}

.component-election-promote .meta-label:after {
    content: ":";
}

.component-election-promote .election-description .vote-target {
    font-size: 1.2em;
}

.component-election-promote .component-message {
    margin-bottom: 12px;
}
.component-field-vote-target .field-title:not(:empty) {
    font-size: 1.3em;
    margin: 0.8em 0;
}
.component-input-radios:has(.has-error) {
    background: #fee;
}
.component-input-vote-target .component-input-radio .component-label {
    padding: 0.25em 0;
    font-size: 1.2em;
    align-items: center;
}

.component-input-vote-target .component-input-radio .check-input {
    accent-color: #3a8eff;
    transform: scale(1.5);
    margin-right: 10px;
}
.component-input-checkbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.component-input-checkbox .check-input {
    order: -1;
}

.component-input-checkbox .component-label {
    width: 100%;
    flex: 1 1 auto;
}
.component-input-radio .component-label {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    flex: 1 1 auto;
}

.component-input-radio .label-text {
    order: 1;
}

.component-input-radio .check-input {
    order: 0;
}
.component-field-vote-submit .component-button-vote {
    flex: 0 0 13em;
    margin: 2em auto 1em;
    min-height: 3em;
}
.component-election-vote {
    margin-top: 3em;
    padding: 12px;
    background: #ebf6ff;
}

.component-election-vote .vote-title {
    background: #003380;
    font-size: 1em;
    color: #fff;
    display: inline-block;
    padding: 4px 12px;
}

.component-election-vote .vote-result {
    margin: 12px 0 0 0;
    text-align: center;
}

.component-election-vote[data-active] {
    opacity: 1;
}
.component-popup {
    display: none;
    min-width: 40%;
    background: #fff;
    padding: 0;
    border: none;
}

.component-popup::backdrop {
    background: rgba(0, 0, 0, 0.5);
}

.component-popup[open] {
    display: flex;
    flex-direction: column;

    position: fixed;
    left: 0;
    top: 0;
    z-index: 11;
}

.component-popup:not(:modal) {
    border: solid 12px rgba(0, 0, 0, 0.5);
}

.component-popup .popup-title {
    margin: 0.2em;
    flex: 1 1 auto;
    font-size: 1.2em;
    font-weight: bold;
}

.component-popup .popup-content {
    position: relative;
    padding: 8px;
    overflow: auto;
    flex: 1 1 auto;
    overscroll-behavior: none;
}

.component-popup iframe {
    border: none;
    height: 100%;
    width: 100%;
    padding: 8px;
    overscroll-behavior: none;
}

.component-popup .popup-header,
.component-popup .popup-footer {
    flex: 0 0 auto;
}

.component-popup .popup-header {
    display: flex;
    align-items: center;
    background: #263238;
    color: #fff;
    padding: 0.2em 0.6em;
}

.component-popup .popup-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: dotted 1px #999;
    padding: 0.8em 0.4em;
}

.component-popup .popup-footer .component-button {
    margin: 0 6px;
    width: auto;
}

.component-popup .popup-footer:empty {
    display: none;
}

.component-popup .popup-close {
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.4em;
    line-height: 1;
}
.component-popup-confirm .component-fieldset {
    margin-top: 12px;
    padding: 12px;
    background: #ebf6ff;
}

.component-popup-confirm .confirm-vote-selected {
    font-size: 1.2em;
}
.component-button-danger {
    background: #993737;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.2), -1px 1px 0 rgba(0, 0, 0, 0.2);
}

.component-button-danger:focus,
.component-button-danger:active,
.component-button-danger:hover {
    color: #fff;
}
.component-grid {
    display: flex;
    flex-direction: column;
}

.component-grid .grid-head {
    display: none;
}

.component-grid .grid-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.component-grid .grid-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 6px;
}

.component-grid .grid-cell {
    display: flex;
    align-items: stretch;
    flex: 1 1 auto;
    padding: 0.2em;
}

.component-grid .grid-cell + .grid-cell {
    border-top: dotted 1px #ddd;
}

.component-grid .grid-head .grid-cell {
    justify-content: center;
    text-align: center;
}

.component-grid .grid-cell-label {
    font-weight: bold;
    text-align: right;
    padding-right: 1em;
    flex: 1 1 1em;
}

.component-grid .cell-check .grid-cell-label .check-input {
    display: none;
}

.component-grid .grid-cell-label br {
    display: none;
}

.component-grid .grid-cell-value {
    flex: 1 1 auto;
}
.component-table {
    margin: 0.8em 0;
}
.component-table .grid-cell {
    align-items: center;
    border-left: solid 1px #aaa;
    border-right: solid 1px #aaa;
}
.component-table .grid-cell:first-child {
    border-top: solid 1px #aaa;
}
.component-table .grid-cell:last-child {
    border-bottom: 1px solid #aaa;
}
.component-table .grid-cell.cell-no {
    background-color: #cddbf1;
}
.component-table .grid-cell.cell-name .grid-cell-value {
    font-size: 1.3em;
    letter-spacing: 0.1em;
}
.component-table .grid-cell-label {
    flex: 0 0 8em;
    font-size: 0.9em;
}
.component-title {
    display: flex;
    align-items: center;
}

.component-title .title-label {
    flex: 1 1 auto;
}

.component-title .title-tasks {
    flex: 0 0 auto;
}
.component-title-site {
    gap: 6px;
}
.component-title-site .component-image-logo {
    width: 100px;
}
.component-title-site .title {
    font-size: 1.2em;
}
.component-title-site .title-prefix,
.component-title-site .title-suffix {
    font-size: 0.6em;
}

.component-title-site .title-suffix {
    color: #5bcbf4;
}
.component-title-section {
    background-color: #f4f4f4;
    border-left: 2px solid #003380;
    color: #00337f;
    font-size: 1.4em;
    padding: 0.2em 0.8em;
    margin: 0 0 0.8em 0;
}
* + .component-title-section {
    margin-top: 3em;
}
.component-title-section-secondary {
    border-left: 1px solid #003380;
    border-bottom: 1px dotted #003380;
    color: #00337f;
    font-size: 1.2em;
    padding: 0.2em 0.8em;
}
.component-link-forgot {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5em;
}
.component-link-result {
    display: block;
    background: #003380;
    color: #fff;
    padding: 0.5em;
    width: 13em;
    text-align: center;
}
input[type="text"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"] {
    background-color: #fff;
}
.component-form-search .component-field-submit-search .field-title {
  margin: 0;
}
.component-form-search .component-field-submit-search .field-title:before {
  display: none;
}
.component-fieldset {
    padding: 0;
}
.component-fieldset .set-title {
    margin-bottom: 12px;
}
.component-fieldset .set-title:empty {
    display: none;
}
.component-fieldset > .set-fields {
    display: grid;
    gap: 12px;
}
.component-fieldset-vertical > .set-fields {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(auto-fill, minmax(1em, auto));
}
.component-fieldset-horizontal > .set-fields {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.component-fieldset-stacked > .set-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.component-fieldset-actions > .set-fields {
    text-align: center;
    padding: 12px 0 0 0;
}

.component-fieldset-actions .component-button + .component-button {
    margin-left: 24px;
}
.component-fieldset-table > .set-fields {
    gap: 0 !important;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(auto-fill, minmax(1em, auto));
}

.component-fieldset-table > .set-fields > .component-field > .field-title {
    border-bottom: none;
}
.component-field-multiple > .field-body > .field-input {
    flex-direction: column !important;
    align-items: stretch !important;
}

.component-field-multiple .field-template {
    display: none;
}

.component-field-multiple .field-add {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a6991;
    font-weight: bold;
    border: solid 1px #65a6cf;
    padding: 4px 12px;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 12px;
}

.component-field-multiple.maximum .field-add {
    display: none;
}

.component-field-multiple .icon-field-add {
    margin-right: 4px;
}

.component-field-multiple [draggable] {
    cursor: move;
}

.component-field-multiple .icon-field-sort {
    display: none;
    margin-right: 0.4em;
}

.component-field-multiple [draggable] .icon-field-sort {
    display: block;
}
.component-field-multiple-unit {
    border: solid 1px #89b0c9;
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.component-field-multiple-unit + .component-field-multiple-unit {
    margin-top: 12px;
}

.component-field-multiple-unit .set-title {
    background: #89b0c9;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    width: 100%;
    margin: 0;
}

.component-field-multiple-unit > .set-fields {
    padding: 12px;
}

.component-field-multiple-unit > .set-fields .set-fields {
    gap: 6px;
}
.component-field-multiple-unit .unit-title {
    display: flex;
    align-items: center;
}

.component-field-multiple-unit .unit-title-no {
    padding: 0 4px;
}

.component-field-multiple-unit .unit-remove {
    display: none;
    color: #993736;
    align-items: center;
    background: #fff;
    padding: 2px 6px;
    font-size: 0.8em;
    cursor: pointer;
}
.component-field-multiple-unit.removable .unit-remove {
    display: flex;
}

.component-field-multiple-unit .icon-field-del {
    margin-right: 4px;
}

.component-field-multiple-unit .field-title {
    border-bottom: none !important;
}
.component-message {
    padding: 0.6em;
    border: 1px solid #ddd;
    background-color: #f8f8f8;
    border-radius: 3px;
    color: #666;
    padding: 0.5em 1em;
    margin-bottom: 0;
    white-space: pre-line;
}

.component-message .component-link {
    text-decoration: underline;
}
.component-message-warning {
  border-color: #f2cd7b;
  background-color: #fff3da;
  color: #d29000;
}
.component-message-status {
  border-color: #a6cad6;
  background-color: #f3f7f9;
  color: #248aad;
}
.component-message-error {
  border-color: #a81e4c;
  background-color: #faeef2;
  color: #aa1345;
}
.component-message-info {
  border: 1px solid #7d966d;
  background-color: #f4ffed;
  color: #2a5d29;
}
.component-input-textarea {
    -webkit-appearance: none;
    display: inline-block;
    width: 100%;

    font: inherit;
    line-height: 1.3;
    padding: 0.2em 0.4em;
    border: solid 1px #d9d9d9;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    background: transparent;
    transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
}

.component-input-textarea:focus,
.component-input-textarea:hover {
    border-color: #999999;
    box-shadow: 0 0 5px #999999;
    outline: none;
}

.component-input-textarea[disabled] {
    background-color: #dddddd;
}
.component-input-select {
    width: auto;
    height: 2em;
    max-width: 100%;
    vertical-align: middle;
    font: inherit;
    line-height: 1.2;
    padding: 0.2em 0.2em 0.2em 0.4em;
    border: solid 1px #d9d9d9;
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
    background: transparent;
    transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
}

.component-input-select:focus,
.component-input-select:hover {
    border-color: #999999;
    box-shadow: 0 0 5px #999999;
    outline: none;
}

.component-input-select option {
    font: inherit;
    line-height: 1.2;
}
.component-input-select-multiple {
	min-height: 10em;
}
.component-input-text-email {
    flex-basis: 22em;
    max-width: min(22em, 100%);
}
.component-input-color {
  display: flex;
  align-items: center;
}

.component-input-color .component-input-color-preview {
  margin-right: 1em;
}
.component-input-color-preview {
    width: 3em;
    height: 1.6em;
    border: solid 1px #ddd;
}
.component-popup-colors .popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.component-popup-colors .color-unit {
    display: flex;
}
.component-popup-colors .color-item {
    width: 1.8em;
    height: 1.8em;
    margin: 1px;
    border: solid 1px #fff;
    cursor: pointer;
}

.component-popup-colors .color-util {
    display: flex;
    justify-content: space-between;
    padding-top: 6px;
}

.component-popup-colors .color-item-none {
    border: solid 1px #ddd;
    width: auto;
    padding: 0 6px;
    text-align: center;
    flex: 1 1 auto;
}

.component-popup-colors .color-solid {
    display: flex;
}

.component-popup-colors .color-code {
    display: flex;
    align-items: center;
    padding-left: 24px;
}

.component-popup-colors .color-code-prefix {
    padding: 0 6px;
}

.component-popup-colors .color-code [name="color"] {
    width: 6em;
}

.component-popup-colors .color-item.selected {
    border-color: #273238;
}
.component-input-checkboxes:has(.has-error) {
    background: #fee;
}
.component-input-text-tel {
    flex-basis: 12em;
    max-width: min(12em, 100%);
}
.component-input-date {
    flex: 0 0 8.4em;
}

/* Safari */
_::-webkit-full-page-media,
_:future,
:root .component-input-date:not([value]) {
    color: transparent;
}
.component-input-datetime {
    flex: 0 0 12.4em;
}
input.component-input-fixed {
    box-shadow: none;
}
.component-menu {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}
.component-menu .menu-children {
    padding: 0;
}

.component-menu li {
    display: block;
    padding: 0;
    margin: 0;
}

.component-menu .menu-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 1.2em;
    height: 1.2em;
    padding: 0.2em;
    font-size: 0.8em;
    border-radius: 100%;
    background-color: #b31c31;
    color: white;
    margin-left: 0.5em;
}
.component-menu-horizontal {
    display: flex;
    width: 100%;
}

.component-menu-horizontal li {
    flex: 1 1 1%;
}
.component-input-editor-video {
    min-height: 12em;
}.component-link-none {
	color: inherit !important;
	text-decoration: none !important;
	cursor: text !important;
}
.component-link-none:hover {
	color: inherit !important;
	text-decoration: none !important;
	cursor: text !important;
}
.component-pager {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.component-pager .pager {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 0;
  width: 100%;
}

.component-pager .pager-item {
  display: block;
  list-style-type: none;
  margin: 0;
  flex: 0 0 auto;
  min-width: 2em;
}

.component-pager .pager-first,
.component-pager .pager-prev,
.component-pager .pager-next,
.component-pager .pager-last {
  min-width: 5em;
}

.component-pager .pager-item + .pager-item {
  margin-left: 6px;
}

.component-pager .component-link {
  display: block;
  text-decoration: none;
  padding: 4px 6px;
}

.component-pager .pager-current {
  font-weight: bold;
}

.component-pager .pager-current,
.component-pager .pager-page {
  display: none;
}
.component-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    font-size: 0.81em;
}

.component-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.component-breadcrumb .breadcrumb-item + .breadcrumb-item:before {
    content: ">";
    margin: 0 0.6em;
}

.component-breadcrumb .breadcrumb-item-self {
    text-overflow: ellipsis;
    overflow: hidden;
    flex: 1 1 auto;
    display: inline;
}
.component-drawer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 6px;
}

.component-drawer .drawer-icon {
    font-size: 2em;
    flex: 0 0 auto;
}

.component-drawer .drawer-icon-close {
    display: none;
}

.component-drawer .drawer-label {
    white-space: nowrap;
}

.menu-open .component-drawer .drawer-icon-close {
    display: block;
}

.menu-open .component-drawer .drawer-icon-open {
    display: none;
}
.component-carousel {
	overflow: hidden;
	display: flex;
}

.component-carousel .slide-prev,
.component-carousel .slide-next {
	position: absolute;
	top: 0;
	font-size: 2em;
	padding: 12px;
	display: flex;
	align-items: center;
	height: 100%;
	z-index: 10;
	cursor: pointer;
}

.component-carousel .slide-prev {
	left: 0;
}
.component-carousel .slide-next {
	right: 0;
}

.component-carousel .icon-chevron_circle_left,
.component-carousel .icon-chevron_circle_right {
	-webkit-filter: drop-shadow(1px 1px 3px #333);
	filter: drop-shadow(1px 1px 3px #333);
	stroke: #333;
	stroke-width: 10px;
	stroke-opacity: 0.6;
}

.component-carousel .icon-chevron_circle_left path,
.component-carousel .icon-chevron_circle_right path {
	fill: #fff;
	fill-opacity: 0.9;
}

.component-carousel .slide-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex: 1 1 auto;
}
.component-deflist {
  display: block;
  padding: 6px;
}

.component-deflist dt {
  font-weight: bold;
  border-bottom: dotted 1px #999;
}

.component-deflist dd {
  margin: 0 0 6px 0;
}
.component-teaser {
	display: flex;
	flex-direction: row-reverse;
}

.component-teaser .summary {
	flex: 1 1 auto;
}

.component-teaser .catch {
	flex: 0 0 100px;
	height: 100px;
}

.component-teaser .catch:empty {
	display: none;
}
.component-cover {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}
.component-label {
	display: flex;
	align-items: center;
	margin: 0;
}
.component-table {
    border-collapse: collapse;
}

.component-table .table-cel-nodata {
    padding: 12px;
}
.component-list {
    margin-left: 1.1em;
    list-style-position: outside;
    padding: 0;
}
.component-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    column-gap: 12px;
    row-gap: 12px;
    list-style: none;
    margin: 0;
}
.component-tabs .list-item {
    margin: 0;
    padding: 0;
}
.component-task .component-link {
    justify-content: normal;
    display: inline-flex;
    align-items: center;
}
.component-task .component-link .icon {
    margin-right: 0.2em;
}
.component-card-teaser {
    display: flex;
    padding: 12px;
}

.component-card-teaser .teaser-body {
    margin-left: 12px;
}
.component-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    column-gap: 12px;
    row-gap: 12px;
}

.component-cards > .component-link {
    display: contents;
    text-decoration: none;
}

.component-cards > .component-link:hover {
    opacity: 0.7;
}
.component-switch {
    display: inline-flex;
    align-items: center;
}

.component-switch .switch-flag {
    display: inline-flex;
    align-items: center;
    border: solid 1px #ddd;
    border-radius: 1em;
    padding: 4px;
    line-height: 1;
    cursor: pointer;
    text-transform: capitalize;
    font-size: .9em;
    margin-right: .2em;
}

.component-switch[data-disabled="on"] {
    opacity: .5;
    cursor: not-allowed;
}

.component-switch[data-disabled="on"] .switch-flag {
    cursor: not-allowed;
}


.component-switch .switch-flag[data-flag="on"] {
    background: #29668d;
    color: #fff;
    padding-left: 6px;
}

.component-switch .switch-flag[data-flag="off"] {
    background: #ededed;
    padding-right: 6px;
}

.component-switch .switch-flag[data-flag="on"]:after {
    content: '';
    display: block;
    width: 1em;
    height: 1em;
    background: #fff;
    border-radius: 50%;
    margin-left: 6px;
}

.component-switch .switch-flag[data-flag="off"]:before {
    content: '';
    display: block;
    width: 1em;
    height: 1em;
    background: #ddd;
    border-radius: 50%;
    margin-right: 6px;
}

.component-switch .switch-label {
    font-size: .9em;
}
.component-slider-rotate {
    width: 100%;
    text-align: left;
    position: relative;
}

.component-slider-rotate ul,
.component-slider-rotate ul li {
    float: left;
    display: inline;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.component-slider-rotate li img {
    width: 100%;
    height: 100%;
    display: block;
}

.component-slider-rotate .slider-view {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.component-slider-rotate .slider-base {
    top: 0;
    position: absolute;
}
.component-slider-rotate .slider-wrap {
    top: 0;
    position: absolute;
    overflow: hidden;
}
.component-slider-rotate .slider-prev,
.component-slider-rotate .slider-next {
    top: 0;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
}
.component-slider-rotate .slider-prev {
    justify-content: flex-end;
}
.component-slider-rotate .slider-next {
    justify-content: flex-start;
}

.component-slider-rotate .slider-prev .icon,
.component-slider-rotate .slider-next .icon {
    color: #222;
}

.component-slider-rotate .slider-prev .icon {
    margin-right: -0.5em;
}

.component-slider-rotate .slider-next .icon {
    margin-left: -0.5em;
}

.component-slider-rotate .slider-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 12px;
}

.component-slider-rotate .slider-pager a {
    margin: 0 5px;
    width: 12px;
    height: 12px;
    display: block;
    overflow: hidden;
    background: #333;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 600ms;
}

.component-slider-rotate .slider-pager a:hover,
.component-slider-rotate .slider-pager a.active {
    opacity: 1;
}
.component-editor {
    width: 100%;
    position: relative;
    z-index: 0;
}
.component-editor-edit .component-editor-content {
    border: solid 1px #ddd;
    min-height: 6em;
    padding: 12px;
}

.component-editor-edit .reserved {
    outline: 3px solid #1f78d8;
    box-shadow: 0 0 12px #1f78d8;
}

.redactor-toolbar {
    display: flex;
    position: sticky;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    border: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    line-height: 1;
    z-index: 5;
}

.redactor-toolbar-button {
    position: relative;
}
.redactor-toolbar-button .re-button {
    padding: 6px;
    display: flex;
}

.redactor-dropdown {
    z-index: 10;
}

.redactor-placeholder:after {
    position: absolute;
    top: 20px;
    left: 20px;
    content: attr(placeholder);
    display: block;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400 !important;
}

.redactor-relative {
    position: relative;
}
.redactor-in {
    cursor: text;
}
.redactor-in:focus {
    outline: 0;
}
.redactor-in *:empty:after {
    content: ".";
    visibility: hidden;
}
.redactor-in table {
    empty-cells: show;
}

.re-button-tooltip {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
    z-index: 10;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 2px;
    padding: 3px 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.redactor-toolbar-button:hover .re-button-tooltip {
    display: block;
}

.redactor-toolbar .re-button {
    color: rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
    display: block;
    text-align: center;
    padding: 12px 14px;
    cursor: pointer;
    outline: 0;
    border: none;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.redactor-toolbar .re-button:hover {
    outline: 0;
    background-color: #3d79f2;
    color: #fff;
}
.redactor-toolbar .re-button.redactor-act,
.redactor-toolbar .re-button:active {
    outline: 0;
    background-color: #eee;
    color: #444;
}
.redactor-toolbar .re-button.disabled {
    opacity: 0.3;
}
.redactor-toolbar .re-button.disabled:hover {
    color: #333;
    outline: 0;
    background-color: transparent !important;
    cursor: default;
}
.redactor-tooltip {
    position: fixed;
    border-radius: 3px;
    padding: 12px;
    line-height: 1;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.95);
    color: #555 !important;
    z-index: 10;
    font-size: 0.9em;
}
.redactor-tooltip a {
    color: #ccc;
    margin: 0 8px;
    text-decoration: none;
}
.redactor-tooltip a:hover {
    color: #fff;
}

#redactor-image-box {
    position: fixed;
    left: 0;
    top: 0;
    display: block;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.4);
    z-index: 3;
    overscroll-behavior: auto;
}
#redactor-image-editter {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 3px;
    color: #fff;
    padding: 12px;
    cursor: pointer;
    font-size: 0.9em;
    white-space: nowrap;
    overscroll-behavior: auto;
}
#redactor-image-editter a {
    display: inline-block;
}
#redactor-image-resizer {
    box-sizing: border-box;
    position: absolute;
    z-index: 4;
    cursor: nw-resize;
    bottom: -5px;
    right: -6px;
    border: 2px solid #000;
    background-color: rgba(255, 255, 255, 0.9);
    width: 10px;
    height: 10px;
    overscroll-behavior: auto;
}

.redactor-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    max-height: 254px;
    color: #000;
    margin: 0;
    padding: 0;
    font-size: 14px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: auto;
    list-style: none;
    display: none;
}
.dropact ~ .redactor-dropdown {
    display: block;
}
.redactor-dropdown .redactor-dropdown-link-inactive {
    background: 0 0;
}
.redactor-dropdown .redactor-dropdown-link-inactive a,
.redactor-dropdown .redactor-dropdown-link-inactive a:hover {
    background: 0 0;
    cursor: default;
    color: #000 !important;
    opacity: 0.4;
    background: 0 0;
}
.redactor-dropdown a {
    display: block;
    padding: 12px 10px;
    color: #000;
    text-decoration: none;
}
.redactor-dropdown a span {
    padding: 2px 4px 1px 4px;
    display: inline-block;
    border-radius: 3px;
    line-height: 1;
}
.redactor-dropdown a:focus {
    outline: 0;
}
.redactor-dropdown a.selected {
    background-color: #000;
    color: #fff;
}
.redactor-dropdown a.redactor-dropdown-link-selected {
    color: #fff;
    background: #000;
}
.redactor-dropdown-box-inline .redactor-dropdown-marked span {
    background-color: #ffd61e;
    color: #000;
    text-decoration: none;
}
.redactor-dropdown-box-inline .redactor-dropdown-code span {
    background: rgba(0, 0, 0, 0.05);
}
.redactor-dropdown-box-inline .redactor-dropdown-sample span {
    background: #46a9fc;
    color: rgba(255, 255, 255, 0.9);
}
.redactor-dropdown-box-inline .redactor-dropdown-variable span {
    color: rgba(0, 0, 0, 0.5);
}
.redactor-dropdown-box-inline .redactor-dropdown-shortcut span {
    background: #000;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}
.redactor-dropdown-box-inline .redactor-dropdown-cite span {
    color: rgba(0, 0, 0, 0.5);
    font-style: italic;
}
.redactor-dropdown-box-inline .redactor-dropdown-sub span,
.redactor-dropdown-box-inline .redactor-dropdown-sup span {
    font-size: 12px;
}

.component-editor-edit .image-editable img,
.component-editor-edit .image-editable figure {
    cursor: pointer;
}

.component-editor-edit .source {
    width: 100%;
    margin: 0;
    background: #1d1d1d;
    color: #ccc;
    font-size: 15px;
    outline: none;
    padding: 20px;
    line-height: 24px;
    font-family: Consolas, Menlo, Monaco, "Courier New", monospace;
}
.component-editor-field {
    display: none;
}
.component-editor-popup-link-external {
    width: 580px;
}
.component-editor-popup-picker-insert {
    width: 100%;
    height: 100%;
}

.component-editor-popup-picker-insert .popup-content {
    display: flex;
}

.component-editor-popup-picker-insert .picker-side {
    flex: 0 0 200px;
    border-right: dotted 1px #777;
    padding-right: 8px;
}

.component-editor-popup-picker-insert .picker-side:empty {
    display: none;
}

.component-editor-popup-picker-insert .picker-side .component-input-textarea {
    min-height: 5em;
}

.component-editor-popup-picker-insert .picker-main {
    position: relative;
    flex: 1 1 auto;
    padding-left: 8px;
}

.component-editor-popup-picker-insert iframe {
    padding: 0 0 0 8px;
}
.component-picker-frame {
	width: 100%;
	height: 100%;
	border: none;
}
.component-editor-popup-picker-insert-embed .component-editor-field-embed-floating,
.component-editor-popup-picker-insert-embed .component-editor-field-embed-alt {
  display: none;
}

.component-editor-popup-picker-insert-embed .selected .component-editor-field-embed-floating,
.component-editor-popup-picker-insert-embed .selected .component-editor-field-embed-alt {
  display: block;
}
.component-editor-field-embed-preview-image .preview-image {
	padding: 6px;
	background: #e9e9e9;
	width: 100%;
}

.component-editor-field-embed-preview-image .preview-image-object {
	display: none;
	max-width: 58%;
	max-height: 240px;
}

.component-editor-field-embed-preview-image .preview-image-empty {
	display: block;
	text-align: center;
	padding: 36px 0;
}

.component-editor-field-embed-preview-image.selected .preview-image-object {
	display: block;
}

.component-editor-field-embed-preview-image.selected .preview-image-empty {
	display: none;
}
.component-editor-field-embed-preview-image-embed .preview-image-text {
    display: none;
}

.component-editor-field-embed-preview-image-embed.selected .preview-image-text {
    display: block;
}

.component-editor-field-embed-preview-image-embed .preview-image-object[data-float="left"] {
    float: left;
    margin-right: 6px;
}
.component-editor-field-embed-preview-image-embed .preview-image-object[data-float="right"] {
    float: right;
    margin-left: 6px;
}
.component-editor-field-embed-preview-image-embed .preview-image-object[data-float="center"] {
    margin: 0 auto 6px auto;
    text-align: center;
    clear: both;
}
.component-editor-content {
    position: relative;
    width: 100%;
}

.component-editor-content:after {
    content: "";
    clear: both;
    display: block;
    visibility: hidden;
    font-size: 1px;
}

.component-editor-content:empty {
    display: none;
}

.component-editor-content p {
    margin-bottom: 0.8em;
}

.component-editor-content figure {
    display: block;
    margin: 0 0 0.8em 0;
    padding: 0;
    border: solid 1px #e9e9e9;
    max-width: 100%;
    min-width: 120px;
}

.component-editor-content figcaption {
    text-align: center;
    padding: 5px;
}

.component-editor-content figure p {
    margin: 0;
}

.component-editor-content figure br {
    display: none;
}

.component-editor-content figure img,
.component-editor-content figure a {
    display: block;
}

.component-editor-content .caption-title,
.component-editor-content .caption-body {
    display: block;
}

.component-editor-content .caption-body {
    font-size: 0.9em;
    line-height: 1.3;
}

.component-editor-content img,
.component-editor-content iframe,
.component-editor-content table {
    max-width: 100%;
}
.component-editor-content img {
    height: auto !important;
}

.component-editor-content h2,
.component-editor-content h3,
.component-editor-content h4 {
    clear: both;
}

.component-editor-content h2 {
    border-left: solid 6px #ddd;
    padding-left: 6px;
    clear: both;
}

.component-editor-content h3 {
    border-bottom: solid 1px #ddd;
    clear: both;
}

.component-editor-content h4 {
    border-bottom: dotted 1px #ddd;
    clear: both;
}

.component-editor-content ul,
.component-editor-content ol {
    margin: 0;
}

.component-editor-content > ul,
.component-editor-content > ol {
    margin: 0 0 0.8em 0;
}

.component-editor-content li {
    margin-left: 1.6em;
    text-indent: 0;
}
.component-editor-content li + li,
.component-editor-content ul ul li:first-child, 
.component-editor-content ol ol li:first-child {
    margin-top: 0.3em;
}

.component-editor-content li > p {
    margin-bottom: 0;
}

.component-editor-content table {
    border-collapse: collapse;
    border: solid 1px #ddd;
    margin-bottom: 0.8em;
}

.component-editor-content td,
.component-editor-content th {
    border: solid 1px #ddd;
}

.component-editor-content iframe {
    width: 480px;
    aspect-ratio: 16/9;
}

.component-editor-content hr {
    clear: both;
    margin: 1em auto;
    border: none;
    border-top: 1px solid #aaa;
}

.component-editor-content p:empty {
    pointer-events: none;
    height: 1.5em;
}

.component-editor-content [data-indent="1"] {
    margin-left: 1.5em;
}

.component-editor-content [data-indent="2"] {
    margin-left: 3em;
}

.component-editor-content [data-indent="3"] {
    margin-left: 4.5em;
}

.component-editor-content [data-fontsize="-2"] {
    font-size: 0.75em;
}

.component-editor-content [data-fontsize="-1"] {
    font-size: 0.9em;
}

.component-editor-content [data-fontsize="1"] {
    font-size: 1.1em;
}

.component-editor-content [data-fontsize="2"] {
    font-size: 1.3em;
}

.component-editor-content [data-fontsize="3"] {
    font-size: 1.6em;
}

.component-editor-content [data-float="center"],
.component-editor-content .float-c-pc {
    display: block;
    margin: 0 auto 0.8em auto;
}

.component-editor-content .text-center {
    text-align: center;
}

.component-editor-content .text-right {
    text-align: right;
}

.component-editor-content .text-justify {
    text-align: justify;
}

.component-editor-content .imgbox::before,
.component-editor-content .imgbox::after {
    display: block;
    content: "";
    clear: both;
}

.component-editor-content .imgbox-item {
    float: left;
    text-align: center;
    margin-bottom: 5px;
}

.component-editor-content .imgbox-item {
    margin-right: 5px;
}

.component-editor-content .imgbox-item_img {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.component-editor-content .imgbox-item_img img {
    flex: 0 1 auto;
    margin: 5px 3px;
}

.component-editor-content .imgbox-item_img::after {
    display: block;
    content: "";
    clear: both;
}

.component-editor-content .imgbox-item_caption {
    line-height: 1.2;
    margin-bottom: 5px;
    padding: 0 3px;
    font-size: 0.88em;
}

.component-editor-content .imgbox-center {
    display: flex;
    justify-content: center;
}

.component-editor-content .bordered {
    border: solid 1px #ddd;
    background: #e9e9e9;
    padding: 12px;
}

.component-editor-content .alert {
    color: #dc4338;
}
.component-lightbox {
    min-width: auto;
    min-height: auto;
}

.component-lightbox .popup-footer {
    justify-content: space-between;
    border: none;
    padding: 0 12px 6px 12px;
    font-size: 0.9em;
}

.component-lightbox .lightbox-image-wrap {
    transition: all 600ms ease-in;

    min-height: 300px;
    min-width: 300px;
}

.component-lightbox .lightbox-image {
    display: block;
    max-width: 90vw;
    max-height: 80vh;
}

.component-lightbox .lightbox-navi {
    position: absolute;
    top: 0;
    height: 100%;
    width: 30%;
    padding: 6px;
    display: flex;
    align-items: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 300ms;
    cursor: pointer;
}

.component-lightbox .lightbox-navi:hover {
    opacity: 1;
}

.component-lightbox .lightbox-prev {
    left: 0;
    justify-content: flex-start;
}

.component-lightbox .lightbox-next {
    right: 0;
    justify-content: flex-end;
}

.component-lightbox .lightbox-navi-label {
    background: rgba(255, 255, 255, 0.75);
    padding: 6px 12px;
    text-transform: uppercase;
    line-height: 1;
    font-size: 0.9em;
}

.component-lightbox.no-prev .lightbox-prev {
    display: none;
}

.component-lightbox.no-next .lightbox-next {
    display: none;
}

.component-lightbox img {
    width: 100%;
}

.block:empty {
  display: none;
}
.block-site-title {
    padding: 6px 0;
    color: #fff;
}

.block-site-title .component-link {
    display: block;
    color: inherit;
}

.block-site-title .component-link:hover {
    text-decoration: none;
    opacity: 0.7;
}
.block-site-account {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}
.block-site-copyright {
    padding: 5px;
    font-size: 0.85em;
}
.block-messages {
    display: none;
    position: fixed;
    top: 36px;
    right: 12px;
    min-width: 320px;
    background: #393938e6;
    padding: 12px;
    border-radius: 4px;
    z-index: 10;
    opacity: 0;
    transition: opacity 500ms ease-out;
}

.block-messages:empty {
    display: none;
}

.block-messages.show {
    display: block;
    opacity: 1;
}

.block-messages .component-message {
    margin: 0;
}

.block-messages .component-message + .component-message {
    margin-top: 12px;
}
.block-intro {
    white-space: pre-line;
    padding: 18px;
    margin-bottom: 24px;
    border: solid 2px #001352;
}
.block-login {
    max-width: 600px;
    padding: 20px;
    background: #fafcff;
    border: 1px solid #6f849d;
    border-radius: 5px;
}
.block-election-index {
    padding-top: 24px;
}

.block-election-index .component-link-result {
    margin: 12px auto;
}



@keyframes loading {
    to {
    }

    from {
        transform: rotate(360deg);
        transform-origin: 50% 50%;
    }
}

.loading {
    position: relative;
    opacity: 0.4;
}

.loading:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 28px;
    border: 5px solid rgba(44, 103, 142, 0.8);
    border-right: 5px solid transparent;
    border-radius: 50%;
    animation: loading 1s linear infinite;
    z-index: 1000;
}

.icon {
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
}
:root {
    background: -webkit-radial-gradient(
        45% 0,
        circle,
        #004f98 0%,
        #011452 200px
    );
}
.page {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
.page .region-header,
.page .region-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #eee;
    flex-wrap: wrap;
    padding: 5px;
}

.page .region-main {
    background: #fff;
    padding: 20px 8px;
}

.page h4,
.page h5,
.page h6 {
    margin-top: 0.8em;
}

.page ol,
.page ul {
    margin: 0.5em 0;
    padding-left: 0;
}
.page ol li {
    text-indent: -0.25em;
}
/* .page-login .block-login {
    margin: 0 auto;
} */
