@charset "UTF-8";

/*DEFAULT LOAD*/
.ajax_load {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--index-modal) * 10);
}

.ajax_load_box {
  margin: auto;
  text-align: center;
  color: #ffffff;
  font-weight: var(--weight-bold);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.ajax_load_box_circle {
  border: 16px solid #e3e3e3;
  border-top: 16px solid var(--hover-color-green);
  border-radius: 50%;
  margin: auto;
  width: 80px;
  height: 80px;

  -webkit-animation: spin 1.2s linear infinite;
  -o-animation: spin 1.2s linear infinite;
  animation: spin 1.2s linear infinite;
}

/*app vars*/
--area-small: 10px;
--area-normal: calc(var(--area-small) * 2);
--area-box: calc(var(--area-small) * 3);

.paginator {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 18px;
  color: #636363;
}

.paginator a, .paginator span {
  display: inline-block;
  background-color: #fff;
  font-weight: normal;
  text-decoration: none;
  transition-duration: 0.2s;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  padding: 3px 9px;
  color: #636363;
  margin: 0px 4px;
}

.paginator a:hover {
  background-size: 200%;
  color: #636363;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.paginator span {
  color: #fff;
  background-color: #57b004;
  border-color: #57b004;
}

.app_formbox_photo {
  display: flex;
  align-items: center;
  margin-bottom: var(--area-box);
}

.app_formbox_photo .thumb {
  width: 350px;
  height: 200px;
  border: 5px solid #CCCCCC;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.app_formbox_photo div {
  width: calc(100% - 350px);
  padding-left: var(--area-box);
}
