@charset "utf-8";

:root {
  --po-color: #00D1C7;
  --po-gradi: linear-gradient(135deg, #00D1C7 0%, #00D1C7 100%);
  --a-bg: rgba(255, 97, 123, 0.08);
}

/* Pretendard */
/* @import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard-dynamic-subset.css"); */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');


/* paperlogy */
@font-face {
  font-family: "paperlogy-R";
  src: url(../fonts/Paperlogy-4Regular.ttf) format("truetype");
  src: url(../fonts/Paperlogy-4Regular.ttf) format("woff");
}

@font-face {
  font-family: "paperlogy-M";
  src: url(../fonts/Paperlogy-5Medium.ttf) format("truetype");
  src: url(../fonts/Paperlogy-5Medium.ttf) format("woff");
}

@font-face {
  font-family: "paperlogy-SB";
  src: url(../fonts/Paperlogy-6SemiBold.ttf) format("truetype");
  src: url(../fonts/Paperlogy-6SemiBold.ttf) format("woff");
}

@font-face {
  font-family: "paperlogy-B";
  src: url(../fonts/Paperlogy-7Bold.ttf) format("truetype");
  src: url(../fonts/Paperlogy-7Bold.ttf) format("woff");
}

@font-face {
  font-family: "paperlogy-EB";
  src: url(../fonts/Paperlogy-8ExtraBold.ttf) format("truetype");
  src: url(../fonts/Paperlogy-8ExtraBold.ttf) format("woff");
}


::selection {
  background-color: var(--a-bg);
}


* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #333;
  margin-top: 90px;
  cursor: default;
}

input:focus,
textarea,
button,
a,
select {
  outline-color: var(--po-color);
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

a {
  font-family: 'Pretendard';
  font-weight: 500;
  text-decoration: none;
  color: #333;
}



li {
  list-style: none;
}

.row_c {
  max-width: 1430px;
  margin: 0 auto;
}

section {
  box-sizing: border-box;
  padding: 0 20px;
}

/*
.wrap {
  min-height: 850px;
}
*/

.page_title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  padding: 20px;
  margin-bottom: 10px;
}

/* radio button */
input[type="radio"] {
  display: none;
}

input[type="radio"]+label {
  cursor: pointer;
}

input[type="radio"]+label>span {
  vertical-align: middle;
  padding-left: 5px;
}

input[type="radio"]+label:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid #aaa;
  border-radius: 50px;
  vertical-align: middle;
  margin-bottom: 2px;
  margin-right: 5px;
}

input[type="radio"]:checked+label:before {
  content: "";
  background-color: var(--po-color);
  border-color: var(--po-color);
  background-image: url('../img/check.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]+label {
  cursor: pointer;
}

input[type="checkbox"]+label>span {
  vertical-align: middle;
  padding-left: 5px;
}

input[type="checkbox"]+label:before {
  content: "";
  display: inline-block;
  background: url(../img/check_deact.png) center;
  background-size: cover;
  width: 17px;
  height: 17px;
  border: 2px solid #aaa;
  border-radius: 50px;
  vertical-align: middle;
}

input[type="checkbox"]:checked+label:before {
  content: "";
  background-color: var(--po-color);
  border-color: var(--po-color);
  background-image: url('../img/check.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

.navi_overflow {
  overflow-x: hidden;
  overflow-y: auto;
}

/* 스크롤바 */
::-webkit-scrollbar {
  width: 3px;
  margin: 10px 0;
}

::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar-thumb {
  background: var(--po-color);
  border-radius: 50px;
}

/* ::-webkit-scrollbar-button:vertical:start:decrement, modal_body::-webkit-scrollbar-button:vertical:start:increment{
  display: block;
  height: 15px;
}
::-webkit-scrollbar-button:vertical:end:decrement{
  display: block;
  width: 15px;
} */
/* 스크롤바 end */


@media screen and (max-width:970px) {
  html {
    font-size: 9px;
  }

  .wrap {
    padding: 0 20px;
  }

}

@media screen and (max-width:500px) {
  body {
    margin-top: 75px !important;
  }

}