@import "reset.css";
body.loading {
  background-color: #FFD485;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.loading .page_wrapper {
  width: 0;
  height: 0;
  visibility: hidden;
}
.loader {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #fff;
}
.loader:before,
.loader:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}
.loader:after {
  color: #a97f31;
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes spin {
  0%,
  100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}
.nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1rem;
}
#nav {
  display: inline-flex;
  flex-direction: row;
  gap: 0;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
}
#nav > li {
  position: relative;
}
#nav > li,
#nav > li > ul > li {
  background-color: #c29748;
  width: 160px;
}
#nav > li.has-children,
#nav > li > ul > li.has-children {
  display: flex;
}
#nav > li.has-children ul,
#nav > li > ul > li.has-children ul {
  z-index: 1;
  position: absolute;
  display: none;
  top: 100%;
}
#nav > li.has-children ul.open,
#nav > li > ul > li.has-children ul.open {
  display: block;
}
#nav > li.has-children:hover ul,
#nav > li > ul > li.has-children:hover ul,
#nav > li.has-children:focus ul,
#nav > li > ul > li.has-children:focus ul {
  display: block;
}
#nav > li.active,
#nav > li > ul > li.active,
#nav > li:hover,
#nav > li > ul > li:hover,
#nav > li:focus,
#nav > li > ul > li:focus {
  background-color: #a97f31;
}
#nav > li > a,
#nav > li > ul > li > a,
#nav > li > span,
#nav > li > ul > li > span {
  text-align: center;
  width: 100%;
  text-decoration: none;
  color: white;
  display: block;
  padding: 1rem 1rem 1rem 1rem;
  cursor: pointer;
}
body .page_wrapper {
  background: #FFD485 url("../imgs/background.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: "PoppinsRegular";
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
body .page_wrapper .page_inner {
  width: 100vw;
  min-height: calc(100vh - 30px);
  overflow-y: auto;
  padding: 74px 10px 20px 10px;
}
body .page_wrapper.has_message .page_inner {
  min-height: calc(100vh - 100px - 2rem);
}
footer {
  height: 30px;
  background-color: #A46E4A;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 12px;
  font-family: "PoppinsThinItalic", sans-serif;
}
footer p {
  font-family: "PoppinsThinItalic", sans-serif;
}
.message {
  position: relative;
  z-index: 1;
  margin: 1rem auto;
  padding: 1rem;
  width: 90%;
  height: 70px;
  overflow-y: auto;
  border: 1px solid transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.message.error {
  border-color: tomato;
  background-color: rgba(255, 99, 71, 0.8);
}
.message.success {
  border-color: turquoise;
  background-color: rgba(64, 224, 208, 0.8);
}
#logout {
  margin-top: 10px;
  position: absolute;
  top: 10px;
  right: 30px;
  background-color: #c29748;
  color: white;
  padding: 0.5rem 1rem;
  border: 1px solid #a97f31;
  float: right;
  cursor: pointer;
  z-index: 2;
  text-decoration: none;
}
#logout:after,
#logout:before {
  clear: both;
}
#logout:focus,
#logout:hover {
  transition: all 200ms ease-in;
  background-color: #a97f31;
}
.main_content {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  gap: 1rem;
}
.main_content h1 {
  display: block;
  padding: 1rem 0;
  text-align: center;
  font-size: 1.6rem;
  color: #a97f31;
}
.main_content > * {
  width: 100%;
}
table.responsive {
  width: 100%;
}
.select2-container {
  font-family: PoppinsRegular;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #c29748;
}
.select2 {
  width: 100%!important;
  border-radius: unset;
  margin-bottom: 1rem;
  font-family: PoppinsRegular;
}
.select2-container--default .select2-selection--single {
  min-height: 32px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  line-height: 32px;
}
.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single {
  border-radius: unset;
  border: unset;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice button {
  position: initial;
}
input {
  width: 100%;
  border: unset;
  border-bottom: 1px solid transparent;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
}
input:focus {
  outline: none;
  transition: all 200ms ease-in;
  border-bottom: 1px solid #c29748;
}
label {
  display: block;
  width: 100%;
  color: #c29748;
  font-family: PoppinsMedium;
  padding: 0 0 0.5rem 0;
}
.btn {
  min-width: 200px;
  background-color: #c29748;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  border: 1px solid #a97f31;
  float: right;
  cursor: pointer;
}
.btn:after,
.btn:before {
  clear: both;
}
.btn:focus,
.btn:hover {
  color: #ffffff;
  transition: all 200ms ease-in;
  background-color: #a97f31;
}
.page_wrapper[data-slug="login"] .page_inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_wrapper[data-slug="login"] form {
  width: 90%;
  max-width: 300px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.16);
}
.page_wrapper[data-slug="login"] form h1 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  width: 100%;
  color: #a97f31;
}
.page_wrapper[data-slug="home"] #visual_counter {
  height: 200px;
  width: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  mask-image: url("/webroot/imgs/himawari.png");
  mask-mode: luminance;
  mask-position: center;
  mask-size: auto 100%;
  mask-repeat: no-repeat;
  margin: 2rem auto 1rem auto;
}
.page_wrapper[data-slug="home"] #determinations {
  padding-top: 2rem;
}
.page_wrapper[data-slug="home"] .main_content {
  width: 96%;
  max-width: 1200px;
}
.page_wrapper[data-slug="home"] h2 {
  padding: 0 0 1rem 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}
.page_wrapper[data-slug="home"] h3 {
  padding: 0.5rem 0;
  text-transform: uppercase;
  font-size: 1.1rem;
}
.page_wrapper[data-slug="home"] .objectif {
  text-align: center;
  padding: 0.2rem 0;
  font-size: 0.8rem;
  font-weight: bold;
}
.page_wrapper[data-slug="home"] .period {
  font-style: italic;
  padding: 0.2rem 0;
  display: block;
  text-align: center;
}
.page_wrapper[data-slug="home"] .current_determination {
  width: auto;
  padding: 2rem;
  background-color: #a97f31;
  color: white;
  text-align: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}
.page_wrapper[data-slug="home"] .current_determination h2 {
  font-size: 1.4rem;
}
.page_wrapper[data-slug="home"] .current_determination button {
  background-color: white;
  color: #a97f31;
  float: unset;
  margin: 2rem;
  cursor: pointer;
  font-size: 1.3rem;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.16);
}
.page_wrapper[data-slug="home"] .other_determinations {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.page_wrapper[data-slug="home"] .other_determinations .group_objectifs,
.page_wrapper[data-slug="home"] .other_determinations .members_objectifs {
  padding: 1rem;
  color: #c29748;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page_wrapper[data-slug="home"] .other_determinations .group_objectifs .period,
.page_wrapper[data-slug="home"] .other_determinations .members_objectifs .period {
  text-align: right;
  padding: 0.2rem 0;
  font-size: 0.8rem;
}
.page_wrapper[data-slug="home"] .other_determinations .group_objectifs .who,
.page_wrapper[data-slug="home"] .other_determinations .members_objectifs .who {
  text-align: right;
  padding: 0.2rem 0;
  font-size: 0.8rem;
}
.page_wrapper[data-slug="home"] .other_determinations .determination {
  padding: 0.8rem;
  background-color: rgba(255, 255, 255, 0.84);
}
.page_wrapper[data-slug="home"] .other_determinations .determination.done {
  background-color: rgba(214, 255, 128, 0.84);
}
.page_wrapper[data-slug="home"] .other_determinations h2 {
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.16);
}
.page_wrapper[data-slug="home"] .other_determinations h3 {
  color: #a97f31;
}
#admin_members .members {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#admin_members .members form {
  display: flex;
  gap: 0;
  align-items: flex-end;
  justify-content: center;
  background-color: #76432E;
  padding: 1rem;
}
#admin_members .members form input {
  margin-bottom: 0;
}
#admin_members .members form label {
  color: white;
}
#admin_members .members form button {
  border: unset;
  height: 32px;
  color: white;
  text-transform: uppercase;
}
#admin_members .members form p:first-child {
  width: 100%;
}
#admin_members .members table {
  background-color: rgba(255, 255, 255, 0.7);
  border-collapse: collapse;
}
#admin_members .members table > * tr {
  display: grid;
  grid-template-columns: 40px 1fr 110px;
}
#admin_members .members table thead {
  background-color: #c29748;
}
#admin_members .members table th {
  color: white;
  text-align: center;
  text-transform: uppercase;
}
#admin_members .members table td,
#admin_members .members table th {
  border: 1px solid #c29748;
  padding: 0.5rem;
}
#admin_members .members table td:last-child {
  text-align: center;
}
#admin_members .members table a {
  color: #c29748;
  text-decoration: none;
  font-size: 1rem;
}
#admin_determinations {
  max-width: 96%;
}
#admin_determinations form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #76432E;
  padding: 1rem;
}
#admin_determinations form label {
  color: white;
}
#admin_determinations form .btn {
  border: unset;
  height: 32px;
  color: white;
  text-transform: uppercase;
}
#admin_determinations form .select2-selection__clear {
  width: 32px !important;
  min-width: unset !important;
}
#admin_determinations form > div {
  display: grid;
  grid-template-columns: 140px 140px 1fr 140px;
  grid-gap: 1rem;
}
#admin_determinations form > div p p {
  width: 100%;
}
#admin_determinations table {
  background-color: rgba(255, 255, 255, 0.7);
  border-collapse: collapse;
}
#admin_determinations table > * tr {
  display: grid;
  grid-template-columns: 40px 120px 120px 1fr 200px 80px 100px 140px;
}
#admin_determinations table thead {
  background-color: #c29748;
}
#admin_determinations table th {
  color: white;
  text-align: center;
  text-transform: uppercase;
}
#admin_determinations table td,
#admin_determinations table th {
  border: 1px solid #c29748;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#admin_determinations table td > span {
  background-color: #c29748;
  color: white;
  padding: 5px 10px;
}
#admin_determinations table td:last-child {
  justify-content: center;
}
#admin_determinations table a {
  color: #c29748;
  text-decoration: none;
  font-size: 1rem;
}
#admin_daimokus {
  max-width: 1200px;
}
#admin_daimokus table {
  background-color: rgba(255, 255, 255, 0.7);
  border-collapse: collapse;
}
#admin_daimokus table > * tr {
  display: grid;
  grid-template-columns: 40px 200px 100px 1fr 110px;
}
#admin_daimokus table thead {
  background-color: #c29748;
}
#admin_daimokus table th {
  color: white;
  text-align: center;
  text-transform: uppercase;
}
#admin_daimokus table td,
#admin_daimokus table th {
  border: 1px solid #c29748;
  padding: 0.5rem;
}
#admin_daimokus table td:last-child {
  text-align: center;
}
#admin_daimokus table a {
  color: #c29748;
  text-decoration: none;
  font-size: 1rem;
}
#determinations {
  max-width: 96%;
}
#determinations table {
  background-color: rgba(255, 255, 255, 0.7);
  border-collapse: collapse;
}
#determinations table > * tr {
  display: grid;
  grid-template-columns: 40px 120px 120px 1fr 200px 80px 100px;
}
#determinations table thead {
  background-color: #c29748;
}
#determinations table th {
  color: white;
  text-align: center;
  text-transform: uppercase;
}
#determinations table td,
#determinations table th {
  border: 1px solid #c29748;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#determinations table td > span {
  background-color: #c29748;
  color: white;
  padding: 5px 10px;
}
#determinations table td:last-child {
  justify-content: center;
}
#determinations table a {
  color: #c29748;
  text-decoration: none;
  font-size: 1rem;
}
body {
  position: relative;
}
.page_inner.modal_open {
  overflow-y: hidden!important;
}
.modal {
  display: none;
}
.modal.open {
  background-color: rgba(0, 0, 0, 0.16);
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: safe center;
  justify-content: safe center;
  z-index: 3;
}
.modal.open .daimokus_modal {
  max-width: 96%;
  max-height: 96%;
  padding: 2rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.modal.open .daimokus_modal > form > p:first-of-type {
  padding: 1rem 0;
  text-align: center;
  font-size: 1.2rem;
  color: #a97f31;
}
.modal.open .daimokus_modal > form > p:nth-of-type(2) {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.modal.open .daimokus_modal > form > p:nth-of-type(2) input {
  border: 1px solid #c29748;
  color: #c29748;
  font-size: 1.4rem;
  text-align: center;
  max-width: 200px;
  margin-bottom: 0;
}
.modal.open .daimokus_modal > form > p:nth-of-type(2) label {
  padding: unset;
  font-size: 0.8rem;
}
.modal.open .daimokus_modal button {
  float: none;
  margin: 1rem auto 0 auto;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  border: unset;
}
@media all and (max-width: 960px) {
  #nav {
    flex-direction: column;
  }
  .page_wrapper[data-slug="home"] .other_determinations {
    grid-template-columns: 1fr;
  }
  table {
    background-color: transparent!important;
  }
  table thead tr {
    display: grid;
    grid-template-columns: 1fr!important;
  }
  table tbody tr {
    display: grid;
    grid-template-columns: 1fr!important;
  }
  table tbody {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  table tbody tr {
    background-color: rgba(255, 255, 255, 0.9);
  }
  table tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.8);
  }
  #admin_determinations form > div {
    grid-template-columns: 1fr;
  }
  #admin_members .members form button {
    min-width: auto;
  }
}
/*# sourceMappingURL=styles.css.map */