body {
  color: #666;
}

header {
    margin-bottom: 10px;
}
main {
    max-width: 900px;
    margin: 0 auto;
}
nav {
    background-color: lightgrey;
    padding: 0 40px;
    height: 3em;
}
ul.uk-navbar-nav > li > a {
    min-height: 40px;
}
/* td:last-child {
    white-space: pre-wrap;
} */
.top-link {
    text-align: right;
}
.uk-modal-title {
    font-size: 1.5rem;
}
.copy:disabled + a {display: none;}

/* -----------------------------
Admin base.css 打消し */
ul > li {
    list-style-type: none;
}
.uk-table-divider > tbody > tr,
.uk-table-divider ul.errorlist {
    background: none;
}
.uk-table.form-table > tbody > tr > td ul.errorlist {
    background: none;
}
.uk-table td {
  font-size: unset;
  /* line-height: 6px;   */
}

/* ------------------------------
テーブル設定 */
.form-table > tbody > tr > th,
.form-table > tbody > tr > td {
  border: solid 1px #eee;
}
.form-table > tbody > tr > td {
  background: #fff;
}
.form-table > tbody > tr > td.label {
  background: #f7f7f7;
}

/* -----------------------------
Switch */

.uk-switch {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 38px;
}
  
/* Hide default HTML checkbox */
.uk-switch input {
  display:none;
}
/* Slider */
.uk-switch-slider {
  background-color: rgba(0,0,0,0.22);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 500px;
  bottom: 0;
  cursor: pointer;
  transition-property: background-color;
    transition-duration: .2s;
  box-shadow: inset 0 0 2px rgba(0,0,0,0.07);
}
/* Switch pointer */
.uk-switch-slider:before {
  content: '';
  background-color: #fff;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  bottom: 2px;
  border-radius: 50%;
  transition-property: transform, box-shadow;
    transition-duration: .2s;
}
/* Slider active color */
input:checked + .uk-switch-slider {
  background-color: #1e87f0 !important;
}
/* Pointer active animation */
input:checked + .uk-switch-slider:before {
  transform: translateX(18px);
}

/* Modifiers */
.uk-switch-slider.uk-switch-on-off {
  background-color: #f0506e;
}
input:checked + .uk-switch-slider.uk-switch-on-off {
  background-color: #32d296 !important;
}

/* Style Modifier */
.uk-switch-slider.uk-switch-big:before {
  transform: scale(1.2);
  box-shadow: 0 0 6px rgba(0,0,0,0.22);
}
.uk-switch-slider.uk-switch-small:before {
  box-shadow: 0 0 6px rgba(0,0,0,0.22);
}
input:checked + .uk-switch-slider.uk-switch-big:before {
  transform: translateX(26px) scale(1.2);
}

/* Inverse Modifier - affects only default */
.uk-light .uk-switch-slider:not(.uk-switch-on-off) {
  background-color: rgba(255,255,255,0.22);
}

.uk-table tr.not-active td {
  background-color: #ddd;
  color: #888;
}

.uk-breadcrumb {
  background: #f7f7f7;
  padding: .5em;
  margin: 0 0 .8em;  
}

.uk-alert p {
  white-space: pre-wrap;
}

/* Vue multi-select styles */
.msl-multi-select {
  height: 200px;
}
.msl-multi-select__action.msl-multi-select__action-select-all {
  width: 1em;
}
.msl-searchable-list__item {
  border-bottom: 1px solid #ccc;
}
.msl-search-list-input,
.msl-searchable-list__items {
  border: 1px solid #ccc;
}
.msl-searchable-list__item:hover {
  background: #1e87f0;
}

.mls-title-wrapper {
  padding: .5em 0;
  width: 328px;
  display:flex;
  justify-content:space-between;
}
.mls-title {
  width: 132px;
  text-align:center;
  background-color: rgba(30, 135, 240, 0.2);
  padding: .5em;
}

/*------------------------------------
  Vue transition */

.fade-enter-active, .fade-leave-active {
  transition: opacity .7s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}