@charset "UTF-8";

.top-logo {
  width: 80%;
}

.left-bar-logo {
  width: 80%;
}

.message {
  background: rgba(90, 110, 26, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  color: #fff;
  font-size: 2em;
  text-align: center;
  padding: 5% 0;
  z-index: 9999;
}

.error {
  background: rgba(173, 0, 45, 0.8);
}

.clickable {
  cursor: pointer;
}

.ck-content {
  height: 300px;
}

i {
  margin: 0 5px;
}

.information dt {
  color: #5d7c94;
  float: left;
  margin-bottom: 10px;
  text-align: right;
}

.information dd {
  margin-bottom: 10px;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.graph-detail {
  width: 300px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 5px;
  padding: 10px;
  margin: 0 10px 10px 0;
}

.graph-detail h3 {
  font-size: 1em;
  font-weight: bold;
  border-bottom: 1px dotted #5d7c94;
  padding-bottom: 4px;
}

.green-back {
  background-color: rgba(81, 186, 94, 0.9);
  width: 100%;
}

.btn-green,
a.btn-green {
  background-color: #b2cf55;
  border-color: #b2cf55;
  color: #fff;
}

.btn-green:hover,
a.btn-green:hover {
  background-color: #a2bf45;
  color: #fff;
}

.content-wrapper {
  padding: 20px;
}

.details th {
  width: 200px;
  white-space: nowrap;
}

.strong {
  font-weight: bold;
}

th {
  background-color: #f6f8eb !important;
}

td {
  background-color: #fff !important;
}

.datepicker.datepicker-dropdown.dropdown-menu {
  padding: 10px;
}

th.dow {
  padding: 5px;
}

/*---------------------------------*/

.movie_preview {
  max-width: 100%;
  width: 480px;
  height: 270px;
  background: #fff;
  border: 1px solid #999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*---------------------------------*/

#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: rgba(178, 207, 85, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}

#loading .spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
          animation: sk-scaleout 1s infinite ease-in-out;
}

#loading .text {
  width: 100%;
  height: 100px;
  margin: 200px auto;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 1.5em;
  color: #fff;
}

.hide-block {
  display: none;
}

/* ローディングアニメーション */

@-webkit-keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

