@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font-family: "Pretendard Variable";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1em;
  word-break: keep-all;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

p {
  word-break: keep-all;
}

.accent,
.accent * {
  color: var(--accent-color);
}

.btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 44px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  color: var(--second-color);
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
  cursor: pointer;
}

.btns.btn-rect {
  border-radius: 10px;
}

.btns.btn-round {
  border-radius: 999px;
}

.btns.bg-primary-500 {
  background: var(--Primary-500);
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .btns.bg-primary-500:hover {
    background: var(--Primary-600);
  }
}
.btns.bg-primary-500:active {
  background: var(--Primary-600);
}

.btns.bg-orange {
  background: var(--orange-color);
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .btns.bg-orange:hover {
    background: #ff9a65;
  }
}
.btns.bg-orange:active {
  background: #ff9a65;
}

.btns.bg-dark {
  background: #4f535a;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .btns.bg-dark:hover {
    background: #7f8187;
  }
}
.btns.bg-dark:active {
  background: #7f8187;
}

.btns.bg-none {
  gap: 10px;
  background: transparent;
  border: 1px solid #bbc1d0;
}
.btns.bg-none svg path {
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}
@media (hover: hover) and (pointer: fine) {
  .btns.bg-none:hover {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
  }
  .btns.bg-none:hover svg path {
    fill: var(--accent-color);
  }
}
.btns.bg-none:active {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}
.btns.bg-none:active svg path {
  fill: var(--accent-color);
}

.btns.btn-tab {
  color: var(--second-color);
  border-radius: 999px;
  background: transparent;
  border: 1px solid #bbc1d0;
}
.btns.btn-tab svg path {
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}
@media (hover: hover) and (pointer: fine) {
  .btns.btn-tab:hover {
    color: var(--second-color);
    background: #fff;
  }
  .btns.btn-tab:hover svg path {
    fill: var(--accent-color);
  }
}
.btns.btn-tab:active {
  color: var(--second-color);
  background: #fff;
}
.btns.btn-tab:active svg path {
  fill: var(--accent-color);
}

.btns.btn-tab.dark {
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .btns.btn-tab.dark:hover {
    color: var(--second-color);
  }
}
.btns.btn-tab.dark:active {
  color: var(--second-color);
}

.btns.btn-tab.selected {
  color: var(--second-color);
  background: #fff;
  pointer-events: none;
}

input {
  margin: 0;
  font-family: "Pretendard Variable";
}

input::-webkit-input-placeholder {
  color: #969dae;
}

input::-moz-placeholder {
  color: #969dae;
}

input:-ms-input-placeholder {
  color: #969dae;
}

input::-ms-input-placeholder {
  color: #969dae;
}

input::placeholder {
  color: #969dae;
}

input[type=text],
input[type=password],
input[type=datetime-local],
select {
  padding: 0 10px;
  margin: 0;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: "Pretendard Variable";
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  line-height: 44px;
  letter-spacing: -0.04em;
  color: var(--second-color);
  outline: none;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}
input[type=text]:hover, input[type=text]:focus,
input[type=password]:hover,
input[type=password]:focus,
input[type=datetime-local]:hover,
input[type=datetime-local]:focus,
select:hover,
select:focus {
  border: 1px solid var(--accent-color);
  outline: none;
}

input[type=text],
input[type=password],
input[type=datetime-local] {
  background: #f4f6fb;
  -webkit-box-shadow: 0 0 0 1px transparent;
          box-shadow: 0 0 0 1px transparent;
}

input[type=text]:-moz-read-only:hover, input[type=text]:-moz-read-only:focus {
  box-shadow: unset !important;
}

input[type=text]:read-only:hover, input[type=text]:read-only:focus {
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
}

input[type=checkbox] {
  position: relative;
  margin: 0px;
  width: 12px;
  height: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 200ms linear;
  transition: -webkit-box-shadow 200ms linear;
  transition: box-shadow 200ms linear;
  transition: box-shadow 200ms linear, -webkit-box-shadow 200ms linear;
}
input[type=checkbox].check-rect {
  width: 20px;
  height: 20px;
}
input[type=checkbox].check-rect:checked::before {
  -webkit-box-shadow: inset 0 0 0 1px #bbc1d0;
          box-shadow: inset 0 0 0 1px #bbc1d0;
  background: url(/user/img/icon_check.svg) 50% 50% no-repeat, #fff;
  background-size: 12px;
}
input[type=checkbox]::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 0 1px #bbc1d0;
          box-shadow: inset 0 0 0 1px #bbc1d0;
}
input[type=checkbox]:checked::before {
  -webkit-box-shadow: inset 0 0 0 1px transparent;
          box-shadow: inset 0 0 0 1px transparent;
  background: url(/user/img/icon_check.svg) 50% 50% no-repeat, #fff;
  background-size: 8px;
}

textarea {
  margin: 0;
  font-family: "Pretendard Variable";
  letter-spacing: -0.04em;
  border-color: transparent;
  outline: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--second-color);
}
textarea::-webkit-input-placeholder {
  font-size: 15px;
  font-weight: 500;
  color: #969dae;
}
textarea::-moz-placeholder {
  font-size: 15px;
  font-weight: 500;
  color: #969dae;
}
textarea:-ms-input-placeholder {
  font-size: 15px;
  font-weight: 500;
  color: #969dae;
}
textarea::-ms-input-placeholder {
  font-size: 15px;
  font-weight: 500;
  color: #969dae;
}
textarea::placeholder {
  font-size: 15px;
  font-weight: 500;
  color: #969dae;
}

button {
  margin: 0;
  font-family: "Pretendard Variable";
  outline: none;
  border-color: transparent;
}

button[type=button],
button[type=submit] {
  padding: 15px 20px;
  margin: 0;
  width: auto;
  min-width: unset;
  height: auto;
  min-height: 44px;
  font-family: "Pretendard Variable";
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.5px;
  background: #4f535a;
  border: none;
  border-radius: 10px;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}
button[type=button]:active,
button[type=submit]:active {
  background: #7f8187;
}
@media (hover: hover) and (pointer: fine) {
  button[type=button]:hover,
  button[type=submit]:hover {
    background: #7f8187;
  }
}

ul.dot-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
ul.dot-ul li {
  margin-left: 20px;
  text-indent: -20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2em;
}
ul.dot-ul li::before {
  content: "•";
  margin-left: 5px;
  margin-right: 10px;
}

ol li {
  margin-left: 25px;
  text-indent: 0px;
  padding-left: 5px;
  list-style: decimal;
}