/**
 * Function
 */
/**
 * Variables
 */
/**
 * Responsive
 */
html,
body {
  font-size: 16px; }
  @media only screen and (max-width: 1279px) {
    html,
    body {
      font-size: 15px; } }
  @media only screen and (max-width: 767px) {
    html,
    body {
      font-size: 14px; } }

.container {
  max-width: 1280px;
  padding: 0 32px;
  margin: 0 auto;
  box-sizing: border-box; }
  @media only screen and (max-width: 1279px) {
    .container {
      padding: 0 24px; } }

/**
 * Base
 */
html,
body {
  color: #383F4E;
  padding: 0; }

html {
  font-family: 'Pretendard', Arial, sans-serif; }
  html input,
  html select,
  html textarea {
    font-family: 'Pretendard', Arial, sans-serif; }

body {
  overflow-y: auto; }

a {
  color: #383F4E;
  outline: 0;
  border-bottom: 1px solid #d6dae2;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s; }
  a:not([class^="btn_"]):hover {
    color: #31BC8D;
    border-color: #31BC8D; }
  a:focus {
    outline: 0; }

button {
  outline: 0; }

.h1, article .h1 a {
  font-family: 'Geologica', Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3; }
  @media only screen and (max-width: 1279px) {
    .h1, article .h1 a {
      font-size: 32px; } }
  @media only screen and (max-width: 767px) {
    .h1, article .h1 a {
      font-size: 20px; } }

.h2 {
  font-size: 40px;
  font-weight: 700; }
  @media only screen and (max-width: 1279px) {
    .h2 {
      font-size: 32px; } }
  @media only screen and (max-width: 767px) {
    .h2 {
      font-size: 16px; } }

.h3, article .body h1 {
  font-size: 32px;
  font-weight: 700; }
  @media only screen and (max-width: 1279px) {
    .h3, article .body h1 {
      font-size: 28px; } }
  @media only screen and (max-width: 767px) {
    .h3, article .body h1 {
      font-size: 24px; } }

.h4, article .body h2 {
  font-size: 24px;
  font-weight: 700; }
  @media only screen and (max-width: 1279px) {
    .h4, article .body h2 {
      font-size: 20px; } }
  @media only screen and (max-width: 767px) {
    .h4, article .body h2 {
      font-size: 18px; } }

.h5 {
  font-size: 15px;
  font-weight: 700; }
  @media only screen and (max-width: 1279px) {
    .h5 {
      font-size: 14px; } }
  @media only screen and (max-width: 767px) {
    .h5 {
      font-size: 13px; } }

.p1 {
  font-size: 18px; }
  @media only screen and (max-width: 1279px) {
    .p1 {
      font-size: 16px; } }

.p2 {
  font-size: 18px; }
  @media only screen and (max-width: 1279px) {
    .p2 {
      font-size: 16px; } }
  @media only screen and (max-width: 767px) {
    .p2 {
      font-size: 13px; } }

/**
 * Button
 */
.btn {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0 2rem;
  line-height: 3rem;
  border-radius: 5px;
  border: 0;
  transition: background-color 0.3s;
  text-decoration: none; }
  .btn:hover, .btn:focus {
    padding: 0 2rem;
    padding-bottom: 0 !important;
    border: 0 !important; }
  @media only screen and (max-width: 767px) {
    .btn {
      padding: 0 18px; }
      .btn:hover, .btn:focus {
        padding: 0 18px; } }

.btn-primary {
  background-color: #31BC8D; }
  .btn-primary:hover, .btn-primary:focus {
    background-color: #19a375; }

.btn-creative {
  position: fixed;
  right: 0;
  top: 50%;
  display: block;
  width: 3rem;
  border: 0 !important;
  transform: translateY(-50%); }
  .btn-creative img {
    width: 100%; }

.btn_edit {
  box-shadow: 0 2px 12px 0 rgba(49, 188, 141, 0.16); }
  .btn_edit:hover, .btn_edit:focus {
    box-shadow: 0 6px 24px 0 rgba(49, 188, 141, 0.24); }

a.upload-link {
  text-decoration: none;
  padding: 0;
  line-height: 3.125rem;
  border: 1px solid #C7CCD3;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s; }
  a.upload-link:hover {
    padding: 0;
    color: #181b21;
    border: 1px solid #C7CCD3;
    background-color: #e3e3e3; }

/**
 * 2023 Update
 */
.main-visual {
  position: fixed;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  background-color: #0F1F3D; }
  .main-visual .category-list {
    top: 202px;
    left: 50%;
    width: 48rem;
    max-width: calc(100% - 48px);
    transform: translateX(-50%); }
    .main-visual .category-list .category-more {
      display: none; }
      .main-visual .category-list .category-more a {
        display: flex !important;
        align-items: center;
        height: 2.125rem; }
        .main-visual .category-list .category-more a span {
          width: 5px;
          height: 5px;
          border-radius: 50%;
          background-color: #fff;
          margin-right: 0.375rem;
          transition: background-color 0.3s; }
          .main-visual .category-list .category-more a span:last-of-type {
            margin-right: 0; }
    @media only screen and (max-width: 1279px) {
      .main-visual .category-list {
        top: 188px; } }
    @media only screen and (max-width: 767px) {
      .main-visual .category-list {
        width: 312px;
        top: 156px; }
        .main-visual .category-list .category-item:nth-of-type(3n + 3) {
          margin-right: 0; }
        .main-visual .category-list .category-item:nth-of-type(8) ~ .category-item {
          display: none; }
        .main-visual .category-list .category-more {
          display: block !important; } }
  .main-visual video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%); }
    .main-visual video.tablet, .main-visual video.mobile {
      display: none; }
    @media only screen and (max-width: 767px) {
      .main-visual video.tablet {
        display: none; }
      .main-visual video.mobile {
        display: block; } }
  .main-visual .logo-text {
    position: absolute;
    left: 50%;
    bottom: 6.25rem;
    width: 19.5rem;
    transform: translateX(-50%); }
    @media only screen and (max-width: 767px) {
      .main-visual .logo-text {
        width: 200px; } }

.category-list {
  position: absolute;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(100% - 48px);
  z-index: 1030; }
  .category-list .category-item {
    margin-top: 0.75rem;
    margin-right: 0.75rem; }
    .category-list .category-item:last-of-type {
      margin-right: 0; }
    .category-list .category-item a {
      display: block;
      padding: 0 1.5rem;
      line-height: 2.125rem;
      font-size: 0.9375rem;
      color: #fff;
      border: 1px solid #6B7384;
      border-radius: 40px;
      text-decoration: none;
      transition: background-color, border-color, color 0.3s; }
      .category-list .category-item a:hover {
        background-color: #fff;
        color: #31BC8D;
        border-color: #31BC8D; }
        .category-list .category-item a:hover span {
          background-color: #31BC8D; }
  @media only screen and (max-width: 767px) {
    .category-list .category-item a {
      font-size: 13px;
      padding: 0 15px; } }

article {
  position: relative;
  margin-top: 15.375rem;
  min-height: calc(100vh - 15.375rem - 7.5rem - 7.25rem);
  min-height: calc(var(--vh, 1vh) * 100 - 15.375rem - 7.5rem - 7.25rem); }
  article#wikibody_preview {
    min-height: auto; }
  article .h1, article .h1 a {
    color: #383F4E;
    margin-bottom: 1rem;
    line-height: 3rem; }
    article .h1 .caret-target {
      display: inline-block;
      font-size: 1.5rem;
      padding: 0;
      line-height: 1;
      border-width: 0.125rem; }
      article .h1 .caret-target::before {
        content: none; }
    @media only screen and (max-width: 767px) {
      article .h1 span.parent a {
        font-size: 16px; } }
    article .h1 span.parent::after {
      content: 'east';
      position: relative;
      top: 4px;
      margin-left: 0.75rem;
      font-family: 'Material Icons';
      font-style: normal;
      font-size: 2rem;
      font-weight: 700;
      line-height: 1;
      letter-spacing: normal;
      text-transform: none;
      display: inline-block;
      white-space: nowrap;
      word-wrap: normal;
      direction: ltr;
      -webkit-font-feature-settings: 'liga';
      -webkit-font-smoothing: antialiased; }
      @media only screen and (max-width: 1279px) {
        article .h1 span.parent::after {
          top: 5px; } }
      @media only screen and (max-width: 767px) {
        article .h1 span.parent::after {
          top: 3px;
          font-size: 16px;
          margin-left: 4px;
          margin-right: -2px; } }
    article .h1 span:not(.parent) {
      position: relative;
      top: 2px; }
  article .search-by-title {
    color: #9EA3AF;
    font-family: 'Pretendard', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 400; }
  article .info {
    display: flex;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-color: #C7CCD3; }
    article .info li {
      margin-right: 5rem; }
      article .info li:last-of-type {
        margin-right: 0; }
    article .info b {
      font-size: 0.9375rem;
      color: #141E34; }
    article .info .info-inner {
      display: flex;
      align-items: center;
      font-size: 1rem;
      margin-top: 0.25rem; }
      article .info .info-inner span {
        color: #6B7384; }
      article .info .info-inner a {
        color: #6B7384;
        border: 0;
        text-decoration: underline; }
        article .info .info-inner a:hover, article .info .info-inner a:focus {
          color: #494e5a; }
      article .info .info-inner time {
        color: #6B7384;
        margin-left: 1rem; }
    @media only screen and (max-width: 767px) {
      article .info {
        flex-direction: column; }
        article .info li {
          margin-right: 0;
          margin-bottom: 24px; }
          article .info li:last-of-type {
            margin-bottom: 0; } }
  article .body {
    padding-bottom: 0;
    margin-bottom: 0; }
    article .body h1,
    article .body h2,
    article .body h3,
    article .body h4,
    article .body h5,
    article .body h6 {
      color: #141E34; }
      article .body h1 a.caret-target,
      article .body h2 a.caret-target,
      article .body h3 a.caret-target,
      article .body h4 a.caret-target,
      article .body h5 a.caret-target,
      article .body h6 a.caret-target {
        display: inline-block;
        padding: 0;
        line-height: 1;
        border-width: 0.125rem;
        color: #141E34;
        border-bottom: 1px solid #a0b2da; }
        article .body h1 a.caret-target:hover, article .body h1 a.caret-target:focus,
        article .body h2 a.caret-target:hover,
        article .body h2 a.caret-target:focus,
        article .body h3 a.caret-target:hover,
        article .body h3 a.caret-target:focus,
        article .body h4 a.caret-target:hover,
        article .body h4 a.caret-target:focus,
        article .body h5 a.caret-target:hover,
        article .body h5 a.caret-target:focus,
        article .body h6 a.caret-target:hover,
        article .body h6 a.caret-target:focus {
          color: #31BC8D;
          border-color: #31BC8D; }
    article .body h1 a.caret-target {
      font-size: 1.5rem; }
    article .body h2 a.caret-target {
      font-size: 1.25rem; }
    article .body hr {
      width: 100%;
      margin: 4rem auto;
      border-bottom: 1px solid #C7CCD3; }
    article .body .toc {
      display: inline-block;
      max-width: 51.75rem;
      background-color: #F7F8FA;
      padding: 1rem 1.5rem;
      box-sizing: border-box;
      border: 0;
      border-radius: 5px; }
      @media only screen and (max-width: 767px) {
        article .body .toc {
          width: 100%; } }
      article .body .toc h1 {
        font-size: 1rem; }
      article .body .toc > ol {
        margin-left: -0.625rem;
        margin-bottom: 0; }
        article .body .toc > ol > li {
          margin-left: 0.625rem; }
          article .body .toc > ol > li > ol > li {
            margin-left: 1.25rem; }
            article .body .toc > ol > li > ol > li > ol > li {
              margin-left: 2.0625rem; }
              article .body .toc > ol > li > ol > li > ol > li > ol {
                display: none; }
                article .body .toc > ol > li > ol > li > ol > li > ol > li {
                  margin-left: 2.9375rem; }
                  article .body .toc > ol > li > ol > li > ol > li > ol > li > ol > li {
                    margin-left: 3.875rem; }
                    article .body .toc > ol > li > ol > li > ol > li > ol > li > ol > li ol li {
                      margin-left: 4.875rem; }
      article .body .toc ol {
        counter-reset: index;
        list-style-type: none;
        padding: 0; }
        article .body .toc ol li {
          display: flex;
          flex-direction: column;
          list-style-type: none;
          line-height: 1.5;
          margin-bottom: 0.5rem; }
          article .body .toc ol li:last-of-type {
            margin-bottom: 0; }
          article .body .toc ol li div {
            display: table; }
            article .body .toc ol li div::before {
              counter-increment: index;
              content: counters(index,".");
              display: table-cell;
              width: 0;
              font-family: "Noto Sans Korean", Arial, sans-serif;
              padding-right: 0.5rem;
              text-align: left; }
          article .body .toc ol li ol {
            margin-top: 0.5rem; }
        article .body .toc ol a {
          display: table-cell;
          width: 100%;
          font-weight: 300;
          border-bottom: 0;
          text-align: left; }
    article .body .structured-data {
      float: none;
      display: block;
      width: fit-content;
      word-break: break-all;
      margin: 0;
      padding: 0.5rem 1rem;
      border: 1px solid #C7CCD3;
      border-radius: 5px; }
      article .body .structured-data .value.value-dataCategory {
        display: inline-block; }
        article .body .structured-data .value.value-dataCategory + .value {
          position: relative;
          margin-left: 0.5rem; }
          article .body .structured-data .value.value-dataCategory + .value::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -0.5rem;
            width: 0.25rem;
            height: 0.25rem;
            border-radius: 50%;
            background-color: #C7CCD3;
            transform: translateY(-50%); }
      article .body .structured-data dl dt {
        font-family: 'Pretendard', Arial, sans-serif;
        font-size: 0.9375rem;
        font-weight: 700;
        color: #6B7384; }
      article .body .structured-data dl dd {
        color: #6B7384; }
        article .body .structured-data dl dd a {
          color: #6B7384;
          padding: 0;
          background: none;
          border-color: #6B7384; }
      @media only screen and (max-width: 767px) {
        article .body .structured-data {
          max-width: 100%; } }
    article .body a[href^="https://"] {
      text-decoration: none;
      border-bottom: 1px solid #C7CCD3; }
  @media only screen and (max-width: 1279px) {
    article {
      min-height: calc(100vh - 234px - 7.5rem - 7.25rem);
      min-height: calc(var(--vh, 1vh) * 100 - 234px - 7.5rem - 7.25rem); } }
  @media only screen and (max-width: 767px) {
    article {
      margin-top: 180px;
      min-height: calc(100vh - 180px - 7.5rem - 188px);
      min-height: calc(var(--vh, 1vh) * 100 - 180px - 7.5rem - 188px); }
      article .h1, article .h1 a {
        margin-bottom: 8px; }
        article .h1 .caret-target {
          font-size: 15px; }
        article .h1 span::after {
          margin: 0 4px; } }

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  margin: 0;
  z-index: 1030;
  overflow: hidden; }
  .header ul {
    margin: 0; }
    .header ul li {
      list-style: none; }
  .header a {
    border: 0; }
  .header .control-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 32px 0; }
    @media only screen and (max-width: 1279px) {
      .header .control-wrap {
        margin: 24px 0 32px 0; } }
    @media only screen and (max-width: 767px) {
      .header .control-wrap {
        margin: 24px 0; } }
    .header .control-wrap a[class^="btn-"],
    .header .control-wrap button[class^="btn-"] {
      display: block;
      padding: 0;
      text-indent: -9999px;
      width: 2.875rem;
      height: 2.875rem;
      border: 0;
      border-radius: 50%;
      overflow: hidden;
      transition: background-image 0.3s, background-color 0.3s; }
      @media only screen and (max-width: 767px) {
        .header .control-wrap a[class^="btn-"],
        .header .control-wrap button[class^="btn-"] {
          width: 36px;
          height: 36px; } }
      .header .control-wrap a[class^="btn-"]:hover,
      .header .control-wrap button[class^="btn-"]:hover {
        background-color: #6B7384; }
    .header .control-wrap .btn-menu {
      background: url("/icon/ic-dark-menu-default@3x.png") no-repeat center/cover;
      background-size: 2.5rem; }
    .header .control-wrap .btn-help {
      background: url("/icon/ic-dark-help-default@3x.png") no-repeat center/cover;
      background-size: 2.5rem; }
    .header .control-wrap .btn-prefer {
      background: url("/icon/ic-dark-prefer-default@3x.png") no-repeat center/cover;
      background-size: 2.5rem; }
    .header .control-wrap .btn-login {
      background: url("/icon/ic-dark-login-default@3x.png") no-repeat center/cover;
      background-size: 2.5rem; }
    .header .control-wrap .btn-logout {
      background: url("/icon/ic-dark-logout-default@3x.png") no-repeat center/cover;
      background-size: 2.5rem; }
    .header .control-wrap .btn-list {
      display: flex;
      align-items: center;
      padding: 0; }
      .header .control-wrap .btn-list .btn-item {
        margin-right: 1rem; }
        .header .control-wrap .btn-list .btn-item .user-email {
          display: none; }
        .header .control-wrap .btn-list .btn-item:last-of-type {
          margin-right: 0; }
        @media only screen and (max-width: 767px) {
          .header .control-wrap .btn-list .btn-item {
            margin-right: 0; } }
  .header .search-wrap {
    position: relative; }
    .header .search-wrap::after {
      content: '';
      position: absolute;
      left: calc((100% - 100vw) / 2);
      bottom: 0;
      width: 100vw;
      height: 1.5px;
      background-color: #9EA3AF; }
    .header .search-wrap form {
      position: relative; }
      .header .search-wrap form #searchbox {
        float: none;
        width: 100%;
        height: 72px;
        margin: 0;
        padding: 0 72px 0 0.625rem;
        outline: 0;
        color: #fff;
        box-sizing: border-box;
        font-size: 1.25rem;
        font-weight: 400; }
        .header .search-wrap form #searchbox:-webkit-autofill {
          font-size: 1.25rem !important;
          caret-color: #fff !important;
          -webkit-text-fill-color: #fff;
          box-shadow: 0 0 0 1000px transparent inset;
          transition: background-color 5000s ease-in-out 0s; }
        .header .search-wrap form #searchbox:hover:-webkit-autofill, .header .search-wrap form #searchbox:focus:-webkit-autofill {
          font-size: 1.25rem !important;
          caret-color: #fff !important;
          -webkit-text-fill-color: #fff;
          box-shadow: 0 0 0 1000px transparent inset;
          transition: background-color 5000s ease-in-out 0s; }
        .header .search-wrap form #searchbox::placeholder {
          color: #C7CCD3; }
        @media only screen and (max-width: 767px) {
          .header .search-wrap form #searchbox {
            height: 52px;
            padding: 0 42px 0 0.625rem; } }
    .header .search-wrap .btn-search {
      position: absolute;
      top: 50%;
      right: 0;
      width: 72px;
      height: 72px;
      padding: 0;
      background-color: transparent;
      border: 0;
      transform: translateY(-50%); }
      @media only screen and (max-width: 767px) {
        .header .search-wrap .btn-search {
          width: 42px;
          height: 42px; } }
  .header.detail .control-wrap {
    position: relative;
    height: 5.25rem;
    margin-top: 0.625rem;
    margin-bottom: 1rem; }
    .header.detail .control-wrap a[class^="btn-"]:hover, .header.detail .control-wrap a[class^="btn-"]:focus,
    .header.detail .control-wrap button[class^="btn-"]:hover,
    .header.detail .control-wrap button[class^="btn-"]:focus {
      background-color: #F7F8FA; }
    .header.detail .control-wrap .btn-menu {
      background: url("/icon/ic-light-menu-default@3x.png") no-repeat center/cover;
      background-size: 2.5rem; }
    .header.detail .control-wrap .btn-help {
      background: url("/icon/ic-light-help-default@3x.png") no-repeat center/cover;
      background-size: 2.5rem; }
    .header.detail .control-wrap .btn-prefer {
      background: url("/icon/ic-light-prefer-default@3x.png") no-repeat center/cover;
      background-size: 2.5rem; }
    .header.detail .control-wrap .btn-login {
      background: url("/icon/ic-light-login-default@3x.png") no-repeat center/cover;
      background-size: 2.5rem; }
    .header.detail .control-wrap .btn-logout {
      background: url("/icon/ic-light-logout-default@3x.png") no-repeat center/cover;
      background-size: 2.5rem; }
    .header.detail .control-wrap .menu-logo {
      position: absolute;
      left: 50%;
      top: 50%;
      margin: 0;
      transform: translate(-50%, -50%); }
      .header.detail .control-wrap .menu-logo a {
        display: block;
        border: 0; }
        .header.detail .control-wrap .menu-logo a img {
          height: 5.25rem; }
    @media only screen and (max-width: 767px) {
      .header.detail .control-wrap .btn-menu,
      .header.detail .control-wrap .btn-help,
      .header.detail .control-wrap .btn-prefer,
      .header.detail .control-wrap .btn-login,
      .header.detail .control-wrap .btn-logout {
        background-size: 32px; } }
  .header.detail .search-wrap::after {
    background-color: #31BC8D; }
  .header.detail .search-wrap form {
    position: relative; }
    .header.detail .search-wrap form #searchbox {
      color: #383F4E; }
      .header.detail .search-wrap form #searchbox:-webkit-autofill {
        font-size: 1.25rem !important;
        caret-color: #383F4E !important;
        -webkit-text-fill-color: #383F4E;
        box-shadow: 0 0 0 1000px transparent inset;
        transition: background-color 5000s ease-in-out 0s; }
      .header.detail .search-wrap form #searchbox:hover:-webkit-autofill, .header.detail .search-wrap form #searchbox:focus:-webkit-autofill {
        font-size: 1.25rem !important;
        caret-color: #383F4E !important;
        -webkit-text-fill-color: #383F4E;
        box-shadow: 0 0 0 1000px transparent inset;
        transition: background-color 5000s ease-in-out 0s; }
      .header.detail .search-wrap form #searchbox::placeholder {
        color: #9EA3AF; }

div.contents {
  position: relative;
  max-width: 100%;
  padding: 0;
  margin: 0; }
  div.contents p {
    text-align: inherit; }

.category-side {
  visibility: hidden;
  position: fixed;
  right: -100%;
  top: 0;
  display: flex;
  flex-direction: column;
  width: calc(100% - 48px);
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 1030;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 32px 24px; }
  .category-side.active {
    right: 0;
    visibility: visible; }
  .category-side .search-wrap {
    display: flex;
    align-items: center; }
    .category-side .search-wrap form {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center; }
      .category-side .search-wrap form #mobileSearchBox {
        width: 100%;
        background-color: transparent;
        border: 0;
        border-radius: 0;
        border-bottom: 1px solid #9EA3AF;
        line-height: 37px;
        font-size: 16px;
        color: #fff;
        padding: 0 32px 0 2px;
        outline: 0; }
        .category-side .search-wrap form #mobileSearchBox::placeholder {
          color: #C7CCD3; }
        .category-side .search-wrap form #mobileSearchBox:-webkit-autofill {
          font-size: 1.25rem !important;
          caret-color: #fff !important;
          -webkit-text-fill-color: #fff;
          box-shadow: 0 0 0 1000px transparent inset;
          transition: background-color 5000s ease-in-out 0s; }
        .category-side .search-wrap form #mobileSearchBox:hover:-webkit-autofill, .category-side .search-wrap form #mobileSearchBox:focus:-webkit-autofill {
          font-size: 1.25rem !important;
          caret-color: #fff !important;
          -webkit-text-fill-color: #fff;
          box-shadow: 0 0 0 1000px transparent inset;
          transition: background-color 5000s ease-in-out 0s; }
      .category-side .search-wrap form .btn-search {
        position: absolute;
        top: 50%;
        right: 0;
        background-color: transparent;
        border: 0;
        width: 32px;
        height: 32px;
        transform: translateY(-50%); }
        .category-side .search-wrap form .btn-search img {
          width: 100%; }
        .category-side .search-wrap form .btn-search i {
          font-size: 1.5rem;
          color: #31BC8D; }
    .category-side .search-wrap .btn-side-close {
      background-color: transparent;
      border: 0;
      width: 32px;
      height: 32px;
      border: 0;
      margin-top: 2px;
      margin-right: 12px;
      outline: 0; }
      .category-side .search-wrap .btn-side-close img {
        width: 100%; }
  .category-side .side-body {
    margin-top: 32px; }
    .category-side .side-body h2 {
      color: #fff;
      margin: 0 0 8px 0; }
    .category-side .side-body .category-list {
      justify-content: flex-start; }

.menu-top-side {
  visibility: hidden;
  position: fixed;
  top: -6.875rem;
  left: 0;
  width: 100%;
  height: 6.875rem;
  padding: 16px 0 10px 0;
  box-sizing: border-box;
  background-color: #C7CCD3;
  transition: top 0.6s ease;
  z-index: 1030; }
  .menu-top-side.active {
    top: 0; }
  .menu-top-side.visible {
    visibility: visible; }
  .menu-top-side .container {
    height: 100%; }
  .menu-top-side .menu-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%; }
    .menu-top-side .menu-header .menu-logo {
      position: absolute;
      left: 50%;
      top: 50%;
      margin: 0;
      height: 100%;
      transform: translate(-50%, -50%); }
      .menu-top-side .menu-header .menu-logo a {
        display: block;
        height: 100%;
        border: 0; }
        .menu-top-side .menu-header .menu-logo a img {
          height: 100%; }
    .menu-top-side .menu-header .login-wrap {
      display: flex;
      align-items: center; }
      .menu-top-side .menu-header .login-wrap a[class^="btn-"] {
        display: block;
        padding: 0;
        text-indent: -9999px;
        width: 2.875rem;
        height: 2.875rem;
        border: 0;
        border-radius: 50%;
        overflow: hidden;
        transition: background-image 0.3s, background-color 0.3s;
        margin-right: 1rem; }
        .menu-top-side .menu-header .login-wrap a[class^="btn-"]:last-of-type {
          margin-right: 0; }
        .menu-top-side .menu-header .login-wrap a[class^="btn-"].btn-login {
          background: url("/icon/ic-sub-login-default@3x.png") no-repeat center/cover;
          background-size: 2.5rem; }
          .menu-top-side .menu-header .login-wrap a[class^="btn-"].btn-login:hover {
            background: url("/icon/ic-sub-login-hover@3x.png") no-repeat center/cover;
            background-size: 2.5rem;
            background-color: #9EA3AF; }
        .menu-top-side .menu-header .login-wrap a[class^="btn-"].btn-logout {
          background: url("/icon/ic-sub-logout-default@3x.png") no-repeat center/cover;
          background-size: 2.5rem; }
          .menu-top-side .menu-header .login-wrap a[class^="btn-"].btn-logout:hover {
            background: url("/icon/ic-sub-logout-hover@3x.png") no-repeat center/cover;
            background-size: 2.5rem;
            background-color: #9EA3AF; }
        .menu-top-side .menu-header .login-wrap a[class^="btn-"].btn-prefer {
          background: url("/icon/ic-sub-prefer-default@3x.png") no-repeat center/cover;
          background-size: 2.5rem; }
          .menu-top-side .menu-header .login-wrap a[class^="btn-"].btn-prefer:hover {
            background: url("/icon/ic-sub-prefer-hover@3x.png") no-repeat center/cover;
            background-size: 2.5rem;
            background-color: #9EA3AF; }
  .menu-top-side .btn-menu-close {
    display: block;
    padding: 0;
    text-indent: -9999px;
    width: 2.875rem;
    height: 2.875rem;
    border: 0;
    border-radius: 50%;
    overflow: hidden;
    background: url(/icon/ic-close-default@3x.png) no-repeat center/cover;
    background-size: 2.5rem; }
    .menu-top-side .btn-menu-close:hover {
      background: url(/icon/ic-close-hover@3x.png) no-repeat center/cover;
      background-size: 2.5rem; }

.menu-left-side,
.menu-right-side {
  visibility: hidden;
  position: fixed;
  bottom: 0;
  width: 50%;
  height: calc(100vh - 6.875rem);
  height: calc(var(--vh, 1vh) * 100 - 6.875rem);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 32px 0;
  box-sizing: border-box;
  background-color: #C7CCD3;
  transition: left 0.6s ease-out, right 0.6s ease-out;
  z-index: 1030; }
  .menu-left-side.visible,
  .menu-right-side.visible {
    visibility: visible; }
  .menu-left-side::before, .menu-left-side::after,
  .menu-right-side::before,
  .menu-right-side::after {
    transition: all 1.5s ease-out; }
  .menu-left-side .container,
  .menu-right-side .container {
    display: flex;
    flex-wrap: wrap;
    overflow-y: scroll;
    max-height: 100%; }
    .menu-left-side .container::-webkit-scrollbar,
    .menu-right-side .container::-webkit-scrollbar {
      width: 16px;
      height: 16px; }
    .menu-left-side .container::-webkit-scrollbar-track,
    .menu-right-side .container::-webkit-scrollbar-track {
      margin: 0;
      border-radius: 10px; }
    .menu-left-side .container::-webkit-scrollbar-thumb,
    .menu-right-side .container::-webkit-scrollbar-thumb {
      background-color: #9ca3a9;
      background-clip: padding-box;
      border: 4px solid transparent;
      border-radius: 10px; }
    @media only screen and (max-width: 1279px) {
      .menu-left-side .container,
      .menu-right-side .container {
        overflow-y: auto; } }
  .menu-left-side .menu-list,
  .menu-right-side .menu-list {
    width: 100%; }
    .menu-left-side .menu-list .menu-item,
    .menu-right-side .menu-list .menu-item {
      display: flex;
      align-items: flex-end;
      margin-bottom: 2rem;
      overflow: hidden; }
      .menu-left-side .menu-list .menu-item:last-of-type,
      .menu-right-side .menu-list .menu-item:last-of-type {
        margin-bottom: 0; }
      .menu-left-side .menu-list .menu-item .h1, .menu-left-side .menu-list .menu-item article .h1 a, article .h1 .menu-left-side .menu-list .menu-item a,
      .menu-right-side .menu-list .menu-item .h1,
      .menu-right-side .menu-list .menu-item article .h1 a,
      article .h1 .menu-right-side .menu-list .menu-item a {
        position: relative;
        top: 4.875rem;
        text-decoration: none;
        color: #6B7384;
        border-width: 2px;
        border-color: transparent; }
        .menu-left-side .menu-list .menu-item .h1:hover, .menu-left-side .menu-list .menu-item article .h1 a:hover, article .h1 .menu-left-side .menu-list .menu-item a:hover, .menu-left-side .menu-list .menu-item .h1:focus, .menu-left-side .menu-list .menu-item article .h1 a:focus, article .h1 .menu-left-side .menu-list .menu-item a:focus,
        .menu-right-side .menu-list .menu-item .h1:hover,
        .menu-right-side .menu-list .menu-item article .h1 a:hover,
        article .h1 .menu-right-side .menu-list .menu-item a:hover,
        .menu-right-side .menu-list .menu-item .h1:focus,
        .menu-right-side .menu-list .menu-item article .h1 a:focus,
        article .h1 .menu-right-side .menu-list .menu-item a:focus {
          color: #383F4E;
          border-color: #383F4E; }
    @media only screen and (max-width: 1279px) {
      .menu-left-side .menu-list,
      .menu-right-side .menu-list {
        position: relative;
        margin-bottom: 5rem; }
        .menu-left-side .menu-list .menu-item,
        .menu-right-side .menu-list .menu-item {
          margin-bottom: 24px; }
        .menu-left-side .menu-list::after,
        .menu-right-side .menu-list::after {
          content: '';
          position: absolute;
          right: -24px;
          bottom: -2.625rem;
          width: 0;
          height: 1px;
          background-color: #9EA3AF;
          transition: width 1.5s ease-out; } }
    @media only screen and (max-width: 767px) {
      .menu-left-side .menu-list .menu-item,
      .menu-right-side .menu-list .menu-item {
        margin-bottom: 16px; } }
  .menu-left-side .sub-menu-list,
  .menu-right-side .sub-menu-list {
    width: 100%;
    padding-right: calc(((100vw - 1280px - 20px) / 2)); }
    .menu-left-side .sub-menu-list ~ .sub-menu-list,
    .menu-right-side .sub-menu-list ~ .sub-menu-list {
      margin-top: 5rem; }
    .menu-left-side .sub-menu-list .sub-menu-item,
    .menu-right-side .sub-menu-list .sub-menu-item {
      line-height: 1.3;
      margin-bottom: 1rem;
      overflow: hidden; }
      .menu-left-side .sub-menu-list .sub-menu-item:last-of-type,
      .menu-right-side .sub-menu-list .sub-menu-item:last-of-type {
        margin-bottom: 0; }
      .menu-left-side .sub-menu-list .sub-menu-item a,
      .menu-right-side .sub-menu-list .sub-menu-item a {
        position: relative;
        display: flex;
        justify-content: space-between;
        padding: 0;
        font-size: 1.125rem;
        top: 3.75rem;
        color: #383F4E;
        border: 0;
        text-decoration: none; }
        .menu-left-side .sub-menu-list .sub-menu-item a span:not(.date),
        .menu-right-side .sub-menu-list .sub-menu-item a span:not(.date) {
          display: inline-block;
          padding-bottom: 1px;
          border-bottom: 1px solid transparent; }
        .menu-left-side .sub-menu-list .sub-menu-item a .date,
        .menu-right-side .sub-menu-list .sub-menu-item a .date {
          color: #6B7384;
          font-family: "Noto Sans Korean", Arial, sans-serif;
          font-size: 1rem;
          margin-left: 1rem;
          text-decoration: none;
          white-space: nowrap; }
        .menu-left-side .sub-menu-list .sub-menu-item a:hover span:not(.date), .menu-left-side .sub-menu-list .sub-menu-item a:focus span:not(.date),
        .menu-right-side .sub-menu-list .sub-menu-item a:hover span:not(.date),
        .menu-right-side .sub-menu-list .sub-menu-item a:focus span:not(.date) {
          border-color: #383F4E;
          font-weight: 500; }
      .menu-left-side .sub-menu-list .sub-menu-item.category,
      .menu-right-side .sub-menu-list .sub-menu-item.category {
        font-family: 'Geologica', Arial, sans-serif;
        margin-bottom: 1.5rem; }
        .menu-left-side .sub-menu-list .sub-menu-item.category a,
        .menu-right-side .sub-menu-list .sub-menu-item.category a {
          position: relative;
          display: block;
          padding-right: 2rem;
          color: #141E34;
          font-size: 1.5rem;
          font-weight: 700;
          top: 5rem; }
          .menu-left-side .sub-menu-list .sub-menu-item.category a::before,
          .menu-right-side .sub-menu-list .sub-menu-item.category a::before {
            content: 'arrow_forward_ios';
            position: absolute;
            top: 50%;
            right: 0;
            color: #383F4E;
            transform: translateY(-50%);
            transition: background-color 0.3s;
            font-family: 'Material Icons';
            font-weight: normal;
            font-style: normal;
            font-size: 1.25rem;
            line-height: 1;
            letter-spacing: normal;
            text-transform: none;
            display: inline-block;
            white-space: nowrap;
            word-wrap: normal;
            direction: ltr;
            -webkit-font-feature-settings: 'liga';
            -webkit-font-smoothing: antialiased; }
          .menu-left-side .sub-menu-list .sub-menu-item.category a:hover span, .menu-left-side .sub-menu-list .sub-menu-item.category a:focus span,
          .menu-right-side .sub-menu-list .sub-menu-item.category a:hover span,
          .menu-right-side .sub-menu-list .sub-menu-item.category a:focus span {
            color: #141E34;
            font-weight: 700;
            border-bottom: 1px solid #141E34 !important; }
    @media only screen and (max-width: 1279px) {
      .menu-left-side .sub-menu-list ~ .sub-menu-list,
      .menu-right-side .sub-menu-list ~ .sub-menu-list {
        margin-top: 0; }
      .menu-left-side .sub-menu-list:nth-last-of-type(2),
      .menu-right-side .sub-menu-list:nth-last-of-type(2) {
        width: calc(40% - 12px);
        margin-right: 24px; }
      .menu-left-side .sub-menu-list:nth-last-of-type(1),
      .menu-right-side .sub-menu-list:nth-last-of-type(1) {
        width: calc(60% - 12px); } }
    @media only screen and (max-width: 767px) {
      .menu-left-side .sub-menu-list ~ .sub-menu-list,
      .menu-right-side .sub-menu-list ~ .sub-menu-list {
        margin-top: 5rem; }
      .menu-left-side .sub-menu-list:nth-last-of-type(1), .menu-left-side .sub-menu-list:nth-last-of-type(2),
      .menu-right-side .sub-menu-list:nth-last-of-type(1),
      .menu-right-side .sub-menu-list:nth-last-of-type(2) {
        margin-right: 0;
        width: 100%; } }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(1) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(1) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(1) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(1) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(1) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(1) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(1) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(1) a {
    transition: top 0.2s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(2) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(2) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(2) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(2) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(2) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(2) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(2) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(2) a {
    transition: top 0.4s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(3) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(3) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(3) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(3) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(3) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(3) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(3) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(3) a {
    transition: top 0.6s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(4) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(4) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(4) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(4) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(4) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(4) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(4) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(4) a {
    transition: top 0.8s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(5) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(5) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(5) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(5) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(5) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(5) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(5) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(5) a {
    transition: top 1s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(6) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(6) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(6) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(6) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(6) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(6) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(6) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(6) a {
    transition: top 1.2s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(7) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(7) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(7) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(7) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(7) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(7) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(7) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(7) a {
    transition: top 1.4s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(8) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(8) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(8) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(8) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(8) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(8) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(8) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(8) a {
    transition: top 1.6s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(9) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(9) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(9) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(9) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(9) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(9) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(9) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(9) a {
    transition: top 1.8s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(10) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(10) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(10) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(10) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(10) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(10) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(10) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(10) a {
    transition: top 2s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(11) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(11) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(11) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(11) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(11) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(11) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(11) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(11) a {
    transition: top 2.2s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(12) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(12) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(12) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(12) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(12) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(12) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(12) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(12) a {
    transition: top 2.4s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(13) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(13) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(13) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(13) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(13) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(13) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(13) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(13) a {
    transition: top 2.6s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(14) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(14) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(14) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(14) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(14) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(14) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(14) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(14) a {
    transition: top 2.8s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(15) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(15) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(15) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(15) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(15) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(15) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(15) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(15) a {
    transition: top 3s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(16) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(16) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(16) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(16) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(16) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(16) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(16) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(16) a {
    transition: top 3.2s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(17) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(17) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(17) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(17) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(17) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(17) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(17) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(17) a {
    transition: top 3.4s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(18) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(18) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(18) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(18) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(18) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(18) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(18) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(18) a {
    transition: top 3.6s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(19) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(19) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(19) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(19) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(19) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(19) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(19) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(19) a {
    transition: top 3.8s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item:nth-of-type(20) a,
  .menu-left-side.active .menu-list .sub-menu-item:nth-of-type(20) a,
  .menu-left-side.active .sub-menu-list .menu-item:nth-of-type(20) a,
  .menu-left-side.active .sub-menu-list .sub-menu-item:nth-of-type(20) a,
  .menu-right-side.active .menu-list .menu-item:nth-of-type(20) a,
  .menu-right-side.active .menu-list .sub-menu-item:nth-of-type(20) a,
  .menu-right-side.active .sub-menu-list .menu-item:nth-of-type(20) a,
  .menu-right-side.active .sub-menu-list .sub-menu-item:nth-of-type(20) a {
    transition: top 4s ease-out;
    transition-delay: 0.5s; }
  .menu-left-side.active .menu-list .menu-item .h1, .menu-left-side.active .menu-list .menu-item article .h1 a, article .h1 .menu-left-side.active .menu-list .menu-item a,
  .menu-left-side.active .menu-list .sub-menu-item .h1,
  .menu-left-side.active .menu-list .sub-menu-item article .h1 a,
  article .h1 .menu-left-side.active .menu-list .sub-menu-item a,
  .menu-left-side.active .sub-menu-list .menu-item .h1,
  .menu-left-side.active .sub-menu-list .menu-item article .h1 a,
  article .h1 .menu-left-side.active .sub-menu-list .menu-item a,
  .menu-left-side.active .sub-menu-list .sub-menu-item .h1,
  .menu-left-side.active .sub-menu-list .sub-menu-item article .h1 a,
  article .h1 .menu-left-side.active .sub-menu-list .sub-menu-item a,
  .menu-right-side.active .menu-list .menu-item .h1,
  .menu-right-side.active .menu-list .menu-item article .h1 a,
  article .h1 .menu-right-side.active .menu-list .menu-item a,
  .menu-right-side.active .menu-list .sub-menu-item .h1,
  .menu-right-side.active .menu-list .sub-menu-item article .h1 a,
  article .h1 .menu-right-side.active .menu-list .sub-menu-item a,
  .menu-right-side.active .sub-menu-list .menu-item .h1,
  .menu-right-side.active .sub-menu-list .menu-item article .h1 a,
  article .h1 .menu-right-side.active .sub-menu-list .menu-item a,
  .menu-right-side.active .sub-menu-list .sub-menu-item .h1,
  .menu-right-side.active .sub-menu-list .sub-menu-item article .h1 a,
  article .h1 .menu-right-side.active .sub-menu-list .sub-menu-item a {
    top: 0; }
  .menu-left-side.active .menu-list::after,
  .menu-right-side.active .menu-list::after {
    width: calc(100% + 48px); }
  .menu-left-side.active .sub-menu-list .sub-menu-item a,
  .menu-right-side.active .sub-menu-list .sub-menu-item a {
    top: 0; }

.menu-left-side {
  padding-left: calc(((100% - 1280px) / 2));
  left: -100%; }
  .menu-left-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #9EA3AF; }
  .menu-left-side.active {
    left: 0; }
    .menu-left-side.active::before {
      width: 100%; }
  @media only screen and (max-width: 1279px) {
    .menu-left-side {
      display: none; } }

.menu-right-side {
  right: -100%; }
  .menu-right-side::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #9EA3AF; }
  .menu-right-side::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 0;
    background-color: #9EA3AF;
    transform: translateY(-50%); }
  .menu-right-side.active {
    right: 0; }
    .menu-right-side.active::before {
      width: 100%; }
    .menu-right-side.active::after {
      height: 100%; }
  .menu-right-side .menu-list {
    display: none; }
  @media only screen and (max-width: 1279px) {
    .menu-right-side {
      width: 100%; }
      .menu-right-side .menu-list {
        display: block; } }

.footer {
  min-height: 7.25rem;
  padding: 32px 0;
  margin-top: 7.5rem;
  background-color: #141E34;
  box-sizing: border-box; }
  .footer .container {
    display: flex; }
  .footer .copyright {
    margin-right: 1rem; }
    .footer .copyright img {
      width: 4.75rem; }
  .footer p {
    margin: 0;
    font-size: 0.9375rem;
    text-align: start; }
  .footer .text {
    color: #C7CCD3; }
  .footer br.mobile {
    display: none; }
  @media only screen and (max-width: 767px) {
    .footer .container {
      flex-direction: column;
      align-items: center; }
    .footer .text {
      margin-top: 16px;
      text-align: center; }
    .footer br.desktop {
      display: none; }
    .footer br.mobile {
      display: block; } }

.btn:disabled {
  opacity: 0.5;
  pointer-events: none; }

.flex-container {
  display: flex;
  align-items: center;
  justify-content: flex-end; }
  .flex-container .revision {
    margin: 0;
    margin-right: 1rem;
    color: #6B7384; }
    .flex-container .revision a {
      color: #6B7384;
      border-bottom: 1px solid #dadce1; }
      .flex-container .revision a:hover, .flex-container .revision a:focus {
        color: #31BC8D;
        border-color: #31BC8D; }

table.pagelist {
  position: relative;
  margin: -0.5rem 0 0 0;
  padding-left: 2.5rem;
  border-collapse: separate;
  border-spacing: 0 1.5rem;
  overflow: hidden; }
  table.pagelist thead {
    display: none; }
  table.pagelist tbody tr {
    position: relative; }
    table.pagelist tbody tr td {
      padding: 1.25rem 0.875rem;
      border: 1px solid #C7CCD3;
      border-radius: 5px; }
      table.pagelist tbody tr td::before, table.pagelist tbody tr td::after {
        content: '';
        position: absolute;
        top: 50%;
        left: -2.5rem;
        width: 1.0625rem;
        height: 1.0625rem;
        border-radius: 50%;
        background-color: #C7CCD3;
        transform: translateY(-50%);
        z-index: 2; }
      table.pagelist tbody tr td:nth-of-type(1) {
        font-size: 1rem;
        color: #6B7384;
        white-space: nowrap;
        padding-left: 1.75rem;
        border-right: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
      table.pagelist tbody tr td:nth-of-type(2) {
        padding-right: 1.75rem;
        border-left: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
      table.pagelist tbody tr td a {
        font-size: 1.5rem;
        font-weight: 700;
        color: #141E34;
        word-break: break-all; }
        table.pagelist tbody tr td a::before {
          content: none; }
        table.pagelist tbody tr td a:hover {
          color: #31BC8D; }
        table.pagelist tbody tr td a ~ span {
          display: block;
          margin-top: 0.25rem; }
        table.pagelist tbody tr td a.comment {
          display: inline-block;
          font-size: 1rem;
          font-weight: 400;
          margin-top: 0.25rem; }
        table.pagelist tbody tr td a.user:hover {
          color: #31BC8D; }
      table.pagelist tbody tr td a.user {
        color: #6B7384;
        font-size: 1rem;
        font-weight: 400; }
      table.pagelist tbody tr td span {
        color: #6B7384;
        font-size: 1rem; }
    table.pagelist tbody tr:first-of-type td::before {
      content: '';
      position: absolute;
      top: 0;
      left: -2.3125rem;
      width: 10px;
      height: 50%;
      background-color: #fff;
      transform: none;
      border-radius: 0;
      z-index: 1; }
    table.pagelist tbody tr:first-of-type td::after {
      background-color: #31BC8D; }
    table.pagelist tbody tr:last-of-type td::after {
      content: '';
      position: absolute;
      bottom: -1.5rem;
      left: -2.3125rem;
      width: 10px;
      height: calc(50% + 1.5rem);
      background-color: #fff;
      transform: none;
      border-radius: 0;
      z-index: 1; }
    table.pagelist tbody tr.empty {
      position: relative;
      left: -2.5rem;
      background-color: #fff;
      z-index: 1; }
      table.pagelist tbody tr.empty td {
        border-right: 1px solid #C7CCD3;
        border-radius: 5px;
        text-align: center; }
        table.pagelist tbody tr.empty td::before, table.pagelist tbody tr.empty td::after {
          content: none; }
  table.pagelist::before {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    left: 0.625rem;
    width: 1px;
    height: calc(100% - 4.5rem);
    background-color: #C7CCD3; }
  @media only screen and (max-width: 767px) {
    table.pagelist tbody tr {
      display: flex;
      flex-direction: column;
      margin-bottom: 18px;
      border: 1px solid #C7CCD3 !important;
      border-radius: 5px; }
      table.pagelist tbody tr td {
        width: 100%;
        border: 0 !important;
        box-sizing: border-box; }
        table.pagelist tbody tr td:nth-of-type(1) {
          padding-left: 1.125rem;
          padding-bottom: 0; }
        table.pagelist tbody tr td:nth-of-type(2) {
          padding-top: 8px;
          padding-right: 1.125rem; }
        table.pagelist tbody tr td a ~ span {
          margin-top: 12px; }
    table.pagelist::before {
      left: 0.5625rem; } }

a.next-page {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: #6B7384;
  line-height: 3.125rem;
  border: 1px solid #C7CCD3;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  margin-left: 2.5rem;
  transition: border-color 0.3s, color 0.3s; }
  a.next-page:hover {
    border: 1px solid #9ca5b1;
    color: #494e5a; }

.ecogwiki-editor .mode-tab {
  position: relative;
  z-index: 1; }
  .ecogwiki-editor .mode-tab li > a {
    text-decoration: none; }
  .ecogwiki-editor .mode-tab li:not(.active) a:hover {
    border-bottom: 1px solid #ddd; }

.CodeMirror {
  border-top: 0; }

.editform input.comment {
  padding: 0 0.5rem;
  border: 1px solid #C7CCD3;
  border-radius: 5px;
  line-height: 2.25rem; }
.editform .actions input {
  margin-right: 0.5rem; }
  .editform .actions input:last-of-type {
    margin-right: 0; }

.g-recaptcha {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 2rem 0; }

/*# sourceMappingURL=update.css.map */
