@charset "UTF-8";
/* ------------------------------------------------------------ *\
  Mixins
\* ------------------------------------------------------------ */
/* example usage*/
/* ------------------------------------------------------------ *\
	Acknowledgement of Country
\* ------------------------------------------------------------ */
body.aoc-open {
  overflow: hidden;
}

.aoc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  color: #434244;
}
.aoc.is-visible {
  display: flex;
}
.aoc.is-dismissed {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
.aoc.is-dismissed .aoc__backdrop {
  backdrop-filter: blur(0);
  background: rgba(0, 0, 0, 0);
}
@media (max-width: 767px), screen and (max-width: 810px) and (orientation: landscape) {
  .aoc {
    padding: 2rem 1.6rem;
    align-items: flex-start;
    overflow-y: auto;
  }
}

.aoc__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1.2rem);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.aoc__dialog {
  position: relative;
  width: 100%;
  max-width: 93.8rem;
  max-height: 100%;
  overflow-y: auto;
  background-color: #E4E0D9;
  background-image: var(--aoc-bg-desktop);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}
@media (max-width: 767px), screen and (max-width: 810px) and (orientation: landscape) {
  .aoc__dialog {
    max-height: none;
    overflow-y: visible;
    background-image: var(--aoc-bg-mobile-top), var(--aoc-bg-mobile-bottom);
    background-position: center top, center bottom;
    background-size: 100% auto, 100% auto;
  }
}

.aoc__inner {
  padding: 6.4rem 6.5rem 5.6rem;
}
@media (max-width: 1024px) {
  .aoc__inner {
    padding: 4.8rem 4rem 4.4rem;
  }
}
@media (max-width: 767px), screen and (max-width: 810px) and (orientation: landscape) {
  .aoc__inner {
    padding: 5.6rem 3.6rem 78%;
  }
}

.aoc__title {
  font-size: 1.8rem;
  line-height: 1.44;
  font-weight: 700;
  color: #434244;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px), screen and (max-width: 810px) and (orientation: landscape) {
  .aoc__title {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}

.aoc__content {
  max-width: 55.5rem;
}
@media (max-width: 767px), screen and (max-width: 810px) and (orientation: landscape) {
  .aoc__content {
    max-width: none;
  }
}
.aoc__content p {
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: #434244;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px), screen and (max-width: 810px) and (orientation: landscape) {
  .aoc__content p {
    font-size: 1.6rem;
    line-height: 2.7rem;
    margin-bottom: 2rem;
  }
}
.aoc__content p:last-child {
  margin-bottom: 0;
}

.aoc__action {
  margin-top: 3.2rem;
  padding: 0;
  border: 0;
  background: none;
  color: #434244;
  font-size: 1.4rem;
  line-height: 2rem;
  cursor: pointer;
}
.aoc__action:after {
  background: currentColor;
}
.aoc__action:before {
  content: "↗";
  float: right;
  margin-left: 0.6rem;
  font-size: 1.4rem;
}
@media (max-width: 767px), screen and (max-width: 810px) and (orientation: landscape) {
  .aoc__action {
    margin-top: 2.4rem;
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
