/* pretendard */

@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  src: url(../fonts/Pretendard-Regular.otf) format("opentype");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  src: url(../fonts/Pretendard-Medium.otf) format("opentype");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  src: url(../fonts/Pretendard-SemiBold.otf) format("opentype");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  src: url(../fonts/Pretendard-Bold.otf) format("opentype");
}

:root {
  /* font */

  /* common color */
  --color-black: #111111;
  --color-white: #fff;
  --color-purple: #6d22d5;
  --color-green: #14a633;
  --color-red: #cd5353;
  --color-blue: #1b6fed;

  /* gray */
  --color-graya2: #a2a2a2;
  --color-gray7b: #7b7b7b;
  --color-gray9a: #9a9a9a;
  --color-gray84: #848484;
  --color-grayde: #dedede;
  --color-grayf9: #f9f9f9;
  --color-graye3: #e3e3e3;

  /* bg color */
  --bg-purple: #f5eeff;
  --bg-red: #fff9f9;
  --bg-green: #f9fff8;
  --bg-blue: #f9fbff;
}

html {
  font-family: "Pretendard";
}

body {
  font-family: "Pretendard";
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
  color: var(--color-black);
}
*,
:after,
:before {
  box-sizing: border-box;
}
:root {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  cursor: default;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
  tab-size: 4;
}

html,
body {
  height: 100%;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
button {
  background: none;
  border: 0;
  cursor: pointer;
}
a {
  text-decoration: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ul,
li {
  list-style: none;
}

.min_1200 {
  min-width: 1200px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* 유틸 */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* button */
.btn_round {
  padding: 8px 24px;
  background-color: var(--color-blue);
  border-radius: 999px;
  color: var(--color-white) !important;
}

@media screen and (min-width: 768px) {
  .sm-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .md-only {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .md-only {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .lg-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sm-hidden {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .md-hidden {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .md-hidden {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .lg-hidden {
    display: none !important;
  }
}

::-webkit-scrollbar {
  width: 8px;
  opacity: 0.25 !important;
}
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: rgba(169, 169, 169, 0.5);
  transition: all 0.3s;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(169, 169, 169, 0.7);
}
::-webkit-scrollbar-track {
  background-color: #eee;
}
