@charset "utf-8"; /* --------------------------------------------------
* Version: 1.0
* Date: 2020.05
* Author: SangKi Park / pak81@saerom.co.kr, seon81.park@gmail.com
\* -------------------------------------------------- */

/** Default
===================================*/
/* Font */

@font-face {
  font-family: 'PretendardL';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Pretendard-Light.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'PretendardB';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Pretendard-Bold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'PretendardEB';
  font-weight: normal;
  font-style: 800;
  src: url('../fonts/Pretendard-ExtraBold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansCJKkrR';
  font-weight: normal;
  font-style: 400;
  src: url('../fonts/NotoSansKR-Regular.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansCJKkrM';
  font-weight: normal;
  font-style: 400;
  src: url('../fonts/NotoSansKR-Medium.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansCJKkrB';
  font-weight: normal;
  font-style: 700;
  src: url('../fonts/NotoSansKR-Bold.woff2') format('woff2');
  font-display: swap;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
dt {
  font-size: 100%;
  font-weight: 400;
}
ol,
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
header,
footer,
article,
section,
aside,
nav {
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0 none;
  empty-cells: show;
}
th {
  font-weight: 400;
}
em {
  font-style: inherit;
}
textarea,
img {
  vertical-align: top;
}
button {
  outline: 0;
  cursor: pointer;
}
a,
a:link {
  color: inherit;
  text-decoration: none;
}
iframe {
  border: 0;
  vertical-align: top;
}

/* Base */
html,
body {
  position: relative;
  width: 100%;
  height: 100%;
}
body,
input,
select,
textarea {
  font-family: 'PretendardB', 'NotoSansCJKkrR', sans-serif !important;
  letter-spacing: -0.01px;
}
input,
select,
textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}
.blind {
  overflow: hidden;
  position: absolute;
  margin: -1px;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
}
.ellipsis {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
}
.row:after {
  content: '';
  display: table;
  clear: both;
  height: 0;
}
.row .col {
  float: left;
}

/** Modals
===================================*/
/* Common */
.modals {
  display: flex;
  position: fixed;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  align-items: center;
}
.modals .inner {
  margin: 0 auto;
}
.modals-container {
  position: relative;
  margin: 0 auto;
  border: 3px solid #d0cee2;
  background-color: #fff;
}
.modals-content {
  position: relative;
}
.modals .btn-close {
  overflow: hidden;
  display: block;
  position: absolute;
  border: 0;
  width: 26px;
  height: 26px;
  text-indent: -9999px;
  background: url(../images/btn_modal_close.png) no-repeat;
}
[data-ui='popup'] .modals-container {
  border: 0;
  max-width: 600px;
  background-color: #171717;
}
[data-ui='popup'] .modal-foot {
  overflow: hidden;
  padding-left: 1px;
  font-size: 15px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
[data-ui='popup'] .modal-foot a {
  float: left;
  display: block;
  width: 50%;
}
[data-ui='popup'] .modal-foot a:last-child {
  margin-left: -1px;
  border-left: 1px solid #2c2c2c;
}

/* Privacy */
#Privacy .modals-container {
  width: 974px;
  height: 694px;
}
#Privacy .modals-head {
  padding: 52px 30px 15px;
  background-color: #f5f5f5;
}
#Privacy .modals-title {
  font-size: 24px;
  line-height: 40px;
  font-weight: 500;
  color: #333;
}
#Privacy .modals-content {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px 30px;
  height: 547px;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
#Privacy .modals-content article {
  margin-top: 24px;
}
#Privacy .modals-content article ol,
#Privacy .modals-content article ul {
  margin-top: 24px;
  padding-left: 10px;
}
#Privacy .btn-close {
  position: absolute;
  top: 58px;
  right: 30px;
}

/* 스크롤 */
.survey_box::-webkit-scrollbar-track {
  border-radius: 10px;
  background: transparent;
}
.survey_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}
.survey_box::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(213, 213, 213, 0.2);
}
.survey_box:hover::-webkit-scrollbar-thumb {
  background: rgba(213, 213, 213, 1);
  transition: all ease 2s;
}

.inquiry_box::-webkit-scrollbar-track {
  border-radius: 10px;
  background: transparent;
}
.inquiry_box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}
.inquiry_box::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(213, 213, 213, 0.2);
}
.inquiry_box:hover::-webkit-scrollbar-thumb {
  background: rgba(213, 213, 213, 1);
  transition: all ease 2s;
}
