/* variable */
html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "HelveticaNeue", "apple sd gothic neo", "Roboto", "Noto Sans KR", sans-serif, "Gulim", sans-serif;
  letter-spacing: normal;
  color: #302e2d;
  word-break: keep-all;
}

/* selection */
/* ::selection {
  background: $selection-bg;
  color: $selection-color;
}

::-moz-selection {
  background: $selection-bg;
  color: $selection-color;
}

::-webkit-input-placeholder {
  // Chrome/Opera/Safari
  background: $selection-bg;
  color: $selection-color;
}

::-moz-placeholder {
  // Firefox 19+
  background: $selection-bg;
  color: $selection-color;
}

:-ms-input-placeholder {
  // IE 10+
  background: $selection-bg;
  color: $selection-color;
}

:-moz-placeholder {
  // Firefox 18-
  background: $selection-bg;
  color: $selection-color;
}
 */
/* toggle class */
.scroll_not {
  overflow-y: hidden;
}

.hidden {
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  text-indent: -9999px;
}

.section {
  width: 100%;
  padding: 0;
  border: none;
}

.no-js {
  display: none;
}

/* mixin */
/* variable */
/* mixin */
body {
  font-family: "Pretendard", sans-serif;
  color: #000000;
}

main {
  padding: 100px 0 130px;
  max-width: 898px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media (max-width: 898px) {
  main {
    padding: 60px 20px 130px;
  }
}

header {
  width: 100%;
  height: initial;
  position: initial;
  margin: 0 0 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 898px) {
  header {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

hr {
  width: 100%;
  height: 1px;
  margin: 0 0 48px 0;
  border: 0;
  background: #E5E5E5;
}

h1 {
  padding: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 898px) {
  h1 {
    font-size: 20px;
  }
}

h2 {
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  gap: 8px;
}
h2 img {
  width: 50px;
  height: auto;
}
@media (max-width: 898px) {
  h2 {
    font-size: 16px;
  }
}

section {
  display: flex;
  flex-direction: column;
}

table {
  width: 100%;
  margin-bottom: 48px;
  border-collapse: collapse;
  border-top: 1px solid #000000;
}
table caption {
  font-weight: 600;
  margin-bottom: 16px;
  text-align: left;
}
table th {
  font-weight: 600;
  border-top: 1px solid #000000;
}
table tr {
  border-bottom: 1px solid #E5E5E5;
}
table td + td, table th + th {
  border-left: 1px solid #E5E5E5;
}
table th, table td {
  padding: 12px;
  text-align: center;
}

ol {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
  gap: 16px;
}
ol li ol {
  gap: 0;
  margin-bottom: 0;
  padding: 0 4px;
}
ol li ol li {
  display: flex;
  flex-direction: column;
}
ol li div {
  padding-top: 8px;
  padding-left: 8px;
}
ol li table {
  margin-top: 24px;
}

div, p, a, li, td, th {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  line-break: anywhere;
}
@media (max-width: 898px) {
  div, p, a, li, td, th {
    font-size: 14px;
  }
}

a {
  display: inline-block;
}
a:hover {
  text-decoration: underline;
}

p {
  margin-bottom: 48px;
}

b {
  font-weight: 600;
}

.table-col-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.table-col-cell img {
  width: 50px;
  height: auto;
}
.table-col-cell span {
  text-align: center;
  font-size: 12px;
}
@media (max-width: 898px) {
  .table-col-cell span {
    font-size: 10px;
  }
}

.version-select-box {
  position: relative;
}
@media (max-width: 898px) {
  .version-select-box {
    margin-bottom: 50px;
  }
}
.version-select-box button, .version-select-box a {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  width: 244px;
  max-width: 100%;
}
.version-select-box__button {
  height: 42px;
  padding: 2px 8px 2px 12px;
  border: 1px solid #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.version-select-box__button img {
  width: 16px;
  height: 16px;
}
.version-select-box.active .arrow {
  transform: rotate(180deg);
}
.version-select-box.active .option-list {
  display: block;
}

.option-list {
  display: none;
  width: 244px;
  padding: 0 12px;
  position: absolute;
  left: 0;
  top: 50px;
  border: 1px solid #000000;
  box-sizing: border-box;
  background: #ffffff;
}
.option-list .option {
  padding: 10px 0;
}
.option-list .option.checked {
  background: right no-repeat url("../img/privacy/select-line.svg");
}
.option-list .option + .option {
  border-top: 1px solid #E5E5E5;
}
.option-list a:hover {
  text-decoration: none;
}

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