@charset "utf-8";

:root {
  --main-color: #00D1C7;
  --btn-color: #00E2D7;
  --gradient: linear-gradient(135deg, #02EBE0 0%, #00DBD1 100%);
  --box-bg: #fff;
  --bdrs: 15px;
  --font-black: #111;
  --font-gray: #999;
  --font-white: #fff;
  --line-color: #E4E4E7;
  --transition: ease-in-out;
}

/* 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');


/* 서울알림 폰트 */

@font-face { 
  font-family: "SA-M"; /* 서울알림 Medium */
  src: url(../font/SeoulAlrim-Medium.woff) format("woff");
}

@font-face {
  font-family: "SA-B"; /* 서울알림 Bold */
  src: url(../font/SeoulAlrim-Bold.woff) format("woff");
}

@font-face {
  font-family: "SA-EB"; /* 서울알림 ExtraBold */
  src: url(../font/SeoulAlrim-ExtraBold.woff) format("woff");
}


/* 드래그 */
::selection {
  background-color: #a9fffb;
  color: #111;
}


* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  /* overflow-x: hidden; */
}

body {
  font-family: 'pretendard', sans-serif;
  font-size: 1.6rem;
  color: var(--font-black);
  cursor: default;
  /* overflow-x: hidden; */
  background: #fff;
}

input:focus,
textarea,
button,
a,
select {
  outline-color: var(--main-color);
}

button {
  cursor: pointer;
}

img {
  vertical-align: top;
}

p,
span {
  word-break: keep-all;
  letter-spacing: -0.3px;
  line-height: 1;
}

a {
  font-family: 'pretendard', sans-serif;
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--font-black);
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'SA-EB', sans-serif;
  font-weight: normal;
  word-break: keep-all;
  line-height: 1;
}

li {
  list-style: none;
}

.row_c {
  max-width: 1200px;
  min-width: 900px;
  margin: 0 auto;
}

.mt10 {
  margin-top: 10rem;
}

.mt15 {
  margin-top: 15rem;
}

/* .wrap {
  min-height: 850px;
} */

.padding_LR {
  padding: 0 20px;
}


/* 스크롤바 */
::-webkit-scrollbar {
  width: 3px;
  height: 4px;
  margin: 10px 0;
}

::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar-thumb {
  background: var(--main-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 */


.br {
  display: block;
}

/* top btn */
.top_btn.visible {
  opacity: 1;
  bottom: 3rem;
}

.top_btn {
  cursor: pointer;
  opacity: 0;
  position: fixed;
  z-index: 1000;
  bottom: -10rem;
  right: 3rem;
  background: #fff;
  border: 1px solid var(--main-color);
  width: 4rem;
  height: 4rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: UD 1.2s ease-in-out infinite;
  transition: bottom .6s ease-in-out;
  /* box-shadow: 0 0 10px var(--box-bg); */
}

.top_btn:hover {
  background: var(--main-color);
}

.top_btn:hover svg {
  fill: #fff;
}

.top_btn svg {
  fill: var(--main-color);
}


@keyframes UD {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}



/*  */

.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(--main-color);
  border-color: var(--main-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(--main-color);
  border-color: var(--main-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(--main-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;
  }

}