@charset "utf-8";

/*Common*/
div, p, ul, li, span, b, strong, h1, h2, h3, h4, h5 {word-break: keep-all;}
.title h2 {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 24px;
}
.title p {
  font-size: 16px;
  color: #46474C;
}
.admin-btn {
  display: block;
  width: fit-content;
  font-size: 20px;
  color: #82EF8E;
}
.material-symbols-outlined {
 font-variation-settings:
         'FILL' 0,
         'wght' 200,
         'GRAD' 0,
         'opsz' 24
}

/*Pictogram*/
.sub-pictogram .title {margin-bottom: 32px;}
.sub-pictogram .title h2 span {
  border: 1px solid #82EF8E;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  color: #82EF8E;
  width: 38px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pretendard', sans-serif;
  line-height: 1;
  margin-left: 8px;
}
.sub-pictogram .download-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  margin-top: 12px;
}
.sub-pictogram .download-wrap > div {
  display: flex;
  align-items: center;
}
.sub-pictogram .download-wrap > div::after {
  content: "";
  background: #DBDCDF;
  width: 1px;
  height: 14px;
  display: block;
  margin: 0 12px;
}
.sub-pictogram .download-wrap > div:first-child {margin-left: -3px;}
.sub-pictogram .download-wrap > div:last-child::after {content: none;}
.sub-pictogram .download-wrap > div > img {
  width: 20px;
  margin-right: 4px;
}
.sub-pictogram .download-wrap > div .material-symbols-outlined {
  font-size: 21px;
  margin-right: 4px;
}
.sub-pictogram .download-wrap > div > span {margin-top: 2px;}
.sub-pictogram .download-wrap .download > img {margin: 0 4px;}
.sub-pictogram .download-wrap .download .material-symbols-outlined {margin: 0 4px;}
.sub-pictogram .download-wrap .download ul {
  display: flex;
  align-items: center;
}
.sub-pictogram .download-wrap .download ul li::after {
  content: "/";
  margin: 0 8px;
}
.sub-pictogram .download-wrap .download ul li:last-child::after {content: none;}
.sub-pictogram .download-wrap .download ul li a {
  background: #82EF8E;
  transition: all .2s;
  height: 14px;
  display: inline-block;
}
.sub-pictogram .download-wrap .download ul li a:hover {background: #78DC83;}
.sub-pictogram .search-wrap {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.sub-pictogram .search-wrap .search-box {
  width: calc(100% - 167px);
  padding-right: 80px;
}
.sub-pictogram .search-wrap .search-box .inner {
  background: #F4F4F5;
  height: 32px;
  padding: 6px;
  display: flex;
  align-items: center;
}
.sub-pictogram .search-wrap .search-box img {width: 20px;}
.sub-pictogram .search-wrap .search-box input {
  width: calc(100% - 20px);
  background: none;
  border: none !important;
  font-size: 14px;
  padding: 0 4px;
  outline: none !important;
  box-shadow: none !important;
}
.sub-pictogram .search-wrap .search-box input::placeholder {color: #70737C;}
.sub-pictogram .search-wrap .search-box:hover .inner {background: #EAEBEC;}
.sub-pictogram .search-wrap .search-box:hover input::placeholder {color: #000;}
.sub-pictogram .search-wrap .search-box .btn-clear {
  display: none;
  cursor: pointer;
}
.sub-pictogram .search-wrap .search-box .btn-clear.is-active {display: inline-flex;}
.sub-pictogram .search-wrap .zoom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 167px;
  font-size: 16px;
}
.sub-pictogram .search-wrap .zoom .controls {
  width: 120px;
  background: #EAEBEC;
  height: 4px;
  position: relative;
}
.sub-pictogram .search-wrap .zoom .controls > span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 16px;
  background: #82EF8E;
  cursor: pointer;
}
.sub-pictogram .search-wrap .zoom .controls > span:hover {background: #78DC83}
.sub-pictogram .search-wrap .zoom .controls > span:active {background: #78DC83}
.sub-pictogram .pictogram-wrap {margin-bottom: 4px;}
.sub-pictogram .pictogram-wrap .pictogram-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.sub-pictogram .pictogram-wrap .pictogram-list li {
  flex: 0 0 calc((100% - 60px) / 16);
  background: #F7F7F8;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sub-pictogram .pictogram-list li img {
  opacity: 0;
  transition: opacity .25s ease;
}
.sub-pictogram .pictogram-list li .loading-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  margin-top: -12px;
  border: 1px solid #F7F7F8;
  border-top-color: #C2C4C8;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  opacity: 0;
  transition: opacity .15s ease;
  pointer-events: none;
}
.sub-pictogram .pictogram-list li.is-loading .loading-spinner {opacity: 1;}
.sub-pictogram .pictogram-list li.is-loaded img {opacity: 1;}
.sub-pictogram .pictogram-list li.is-loaded .loading-spinner {opacity: 0;}
@keyframes spin{
  to { transform: rotate(360deg); }
}
.sub-pictogram .info-wrap {
  background: #F7F7F8;
  padding: 16px;
  font-size: 14px;
}
.sub-pictogram .info-wrap > div {margin-bottom: 12px;}
.sub-pictogram .info-wrap > div:last-child {margin-bottom: 0;}
.sub-pictogram .info-wrap b {
  display: block;
  font-weight: 500;
}
.sub-pictogram .info-wrap p {
  color: #46474C;
  font-weight: 300;
}
@media all and (max-width: 1023px) {
  .sub-pictogram .pictogram-wrap .pictogram-list li {flex: 0 0 calc((100% - 28px) / 8);}
}
@media all and (max-width: 767px) {
  .sub-pictogram .download-wrap > div:nth-child(2)::after {content: none;}
  .sub-pictogram .download-wrap .download {
    width: 100%;
    margin-top: 12px;
  }
  .sub-pictogram .search-wrap .search-box {
    width: calc(100% - 96px);
    padding-right: 32px;
  }
  .sub-pictogram .search-wrap .zoom {width: 96px;}
  .sub-pictogram .search-wrap .zoom > span {display: none;}
  .sub-pictogram .search-wrap .zoom .controls {width: 100%;}
  .sub-pictogram .pictogram-wrap .pictogram-list li {flex: 0 0 calc((100% - 20px) / 6);}
}
@media all and (max-width: 579px) {
  .sub-pictogram .pictogram-wrap .pictogram-list li {flex: 0 0 calc((100% - 16px) / 5);}
}
@media all and (max-width: 424px) {
  .sub-pictogram .pictogram-wrap .pictogram-list li {flex: 0 0 calc((100% - 12px) / 4);}
}
@media all and (max-width: 374px) {
  .sub-pictogram .pictogram-wrap .pictogram-list li {flex: 0 0 calc((100% - 8px) / 3);}
}

/*About*/
.sub-about section {
  border-bottom: 1px solid #F4F4F5;
  padding: 32px 0;
}
.sub-about section:first-child {padding: 0 0 56px;}
.sub-about section:last-child {border-bottom: none;}
.sub-about .container {
  display: flex;
  flex-wrap: wrap;
}
.sub-about .left {
  width: 34%;
  padding-right: 24px;
}
.sub-about .right {width: 66%;}
.sub-about .en,
.sub-about .ko {
  font-size: 16px;
  line-height: 26px;
}
.sub-about .ko {
  color: #777;
  margin-top: 16px;
}
@media all and (max-width: 1023px) {
  .sub-about section:first-child {padding-bottom: 32px;}
  .sub-about .container {padding: 0;}
}
@media all and (max-width: 767px) {
  .sub-about .left {width: 100%;}
  .sub-about .right {width: 100%;}
  .sub-about .title {margin-bottom: 16px;}
  .sub-about section:first-child .title {margin-bottom: 0;}
}