@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
html {
  height: 100%;
}
a,
b,
blockquote,
html,
body,
header,
div,
p,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
em,
i,
iframe,
img,
button,
form,
label,
legend,
fieldset,
input,
textarea,
ul,
li,
ol,
pre,
span,
strong,
table,
th,
td {
  margin: 0;
  padding: 0;
}
body,
button,
input,
select,
td,
textarea,
th {
  font-size: 14px;
  line-height: 1.5;
  font-family: "Noto Sans KR", sans-serif;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: #121417;
}
ol,
ul {
  list-style: none;
}
fieldset,
img {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input::placeholder {
  color: #bdc7cb;
}
button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
a:active,
a:hover {
  text-decoration: none;
}

.f_weight_bold {
  font-weight: bold;
}
.pointer {
  cursor: pointer;
}
.underline {
  text-decoration: underline;
}
.mt_0 {
  margin-top: 0 !important;
}
.text_left {
  text-align: left !important;
}
.color_p1 {
  color: #00c1bb !important;
}
.red_text {
  color: #f84c4a !important;
}
hr.divider {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

/* 체크박스 */
.chk-list-vertical li {
  margin: 10px 0 0 0;
}
.chk-list-vertical li:first-child {
  margin: 0;
}
.chk-list-vertical .checkbox + * {
  margin-left: 10px;
}
.checkbox {
  display: inline-block;
}
.checkbox input[type="checkbox"] {
  display: none;
}
.checkbox input[type="checkbox"] + label {
  display: inline-block;
  padding-left: 28px;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  height: 20px;
}
.checkbox input[type="checkbox"] + label.hide {
  padding-left: 20px;
  font-size: 0;
  vertical-align: bottom;
}
.checkbox input[type="checkbox"] + label::before {
  content: "";
  background: url(../img/mypage/ico_chk.png) no-repeat left center/20px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
.checkbox input[type="checkbox"]:checked + label::before {
  background: url(../img/mypage/ico_chk_on.png) no-repeat left center/20px;
}
.checkbox input[type="checkbox"]:disabled + label {
  cursor: default;
}

/* 라디오박스 */
.radio_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
.radio_wrap .rdo + .selectbox {
  margin-left: 10px;
}
.rdo {
  display: inline-block;
}
.rdo input[type="radio"] {
  display: none;
}
.rdo input[type="radio"] + label {
  display: inline-block;
  padding-left: 28px;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  height: 20px;
}
.rdo input[type="radio"] + label::before {
  content: "";
  background: url(../img/mypage/ico_rdo.png) no-repeat left center/20px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
.rdo input[type="radio"]:checked + label::before {
  background: url(../img/mypage/ico_rdo_on.png) no-repeat left center/20px;
}

/* selectbox */
.selectbox {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid #c0c7ce;
  background: #fff url(../img/mypage/ico_select_arrow.png) no-repeat right 12px
    center/24px;
  font-size: 16px;
  cursor: pointer;
  box-sizing: border-box;
  appearance: none;
}

/* input_text */
.input_text {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  border: 1px solid #c0c7ce;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

/* textarea */
.textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid #c0c7ce;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  box-sizing: border-box;
  text-align: left;
  resize: none;
}

/* button */
.acabtn {
  display: inline-block;
  min-width: 120px;
  height: 48px;
  padding: 0 30px;
  border-radius: 50px;
  background: #00c1bb;
  border: 1px solid #00c1bb;
  font-size: 16px;
  line-height: 46px;
  font-weight: bold;
  color: #fff;
  box-sizing: border-box;
}
.acabtn.ty_text {
  min-width: auto;
  height: auto;
  border: 0;
  padding: 0;
  line-height: normal;
  border: 0;
  background: none;
  color: #121417;
}
.acabtn.size_sm {
  min-width: 70px;
  height: 32px;
  padding: 0 20px;
  font-size: 13px;
  line-height: 30px;
  font-weight: 500;
}
.acabtn.size_long {
    min-width: 90px;
    height: 28px;
    padding: 0 15px;
    font-size: 12px;
    line-height: 26px;
}
.acabtn.size_lg {
  height: 52px;
  padding: 0 35px;
  line-height: 50px;
}
.acabtn.block {
  display: block;
  width: 100%;
}
.acabtn.brick {
  border-radius: 8px;
}
.acabtn.white {
  background: #fff;
  border: 1px solid #55616d;
  color: #121417;
}
.acabtn.gray {
  background: #999;
  border: 1px solid #999;
  color: #fff;
}
.acabtn.red {
  background: #f25757;
  border: 1px solid #f25757;
  color: #ffffff;
}
.acabtn:disabled {
  background: #a4adb7;
  border-color: #a4adb7;
  color: #fff;
  cursor: not-allowed;
  pointer-events: none;
}
.acabtn .ic {
  color: #fff;
}
.acabtn .ic {
  color: #fff;
}
.acabtn.white .ic,
.acabtn.ty_text .ic {
  color: #121417;
}
.acabtn .ic.ic_excel {
  display: inline-block;
  background: url(../img/mypage/ico_excel.png) no-repeat left center/24px;
  padding-left: 32px;
}
.acabtn .ic.ic_down {
  display: inline-block;
  background: url(../img/mypage/ico_cms_down.png) no-repeat left center/16px;
  padding-left: 22px;
}
.acabtn .ic.ic_arr_right {
  display: inline-block;
  background: url(../img/mypage/ico_chevron_right.png) no-repeat right
    center/16px;
  padding-right: 20px;
}

@media (max-width: 1080px) {
  /* 체크박스 */
  .checkbox input[type="checkbox"] + label {
    font-size: 14px;
    line-height: 18px;
  }

  /* 라디오박스 */
  .rdo input[type="radio"] + label {
    font-size: 14px;
  }

  /* selectbox */
  .selectbox {
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
  }

  /* input_text */
  .input_text {
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
  }

  /* textarea */
  .textarea {
    padding: 15px;
    font-size: 14px;
    line-height: 22px;
  }

  /* button */
  .acabtn {
    min-width: 100px;
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    line-height: 38px;
  }
  .acabtn.size_sm {
    min-width: 60px;
    height: 28px;
    padding: 0 15px;
    font-size: 12px;
    line-height: 26px;
  }
.acabtn.size_long {
    min-width: 90px;
    height: 28px;
    padding: 0 15px;
    font-size: 12px;
    line-height: 26px;
}

  .acabtn.size_lg {
    height: 44px;
    padding: 0 25px;
    line-height: 42px;
  }
}

@media (max-width: 760px) {
  /* 체크박스 */
  .checkbox input[type="checkbox"] + label {
    font-size: 12px;
  }

  /* 라디오박스 */
  .rdo input[type="radio"] + label {
    font-size: 12px;
  }

  /* selectbox */
  .selectbox {
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  /* input_text */
  .input_text {
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  /* textarea */
  .textarea {
    padding: 10px;
    font-size: 12px;
    line-height: 18px;
  }

  /* button */
  .acabtn {
    min-width: 70px;
    height: 32px;
    padding: 0 15px;
    font-size: 12px;
    line-height: 30px;
  }
  .acabtn.size_lg {
    height: 36px;
    padding: 0 20px;
    line-height: 34px;
  }
  .acabtn .ic.ic_excel {
    padding-left: 26px;
    background-size: 20px;
  }
  .acabtn .ic.ic_down {
    background-size: 12px;
  }
  .acabtn .ic.ic_arr_right {
    padding-right: 14px;
    background-size: 12px;
  }
}
