::-webkit-scrollbar {
  display: none;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100px;
  font-family: Pretendard;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1300px) {
  html {
    font-size: 80px;
  }
}

@media (max-width: 1000px) {
  html {
    font-size: 60px;
  }
}

@media (max-width: 750px) {
  html {
    font-size: 50px;
  }
}

a {
  text-decoration: none;
  color: black;
}

a,
img,
input,
label,
button,
.dont_drag {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

p {
  text-align: center;
}

footer {
  width: 100vw;
  height: 120px;
  background-color: var(--gray_10);
}

footer > div {
  height: 100%;
  width: 12rem;
}

footer img {
  width: 100px;
}

.material-icons {
  position: relative;
  top: 2px;
}

.move_to_top {
  position: fixed;
  bottom: 12px;
  right: 20px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  color: white;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text_align_start {
  text-align: start;
}

.modal img {
  max-height: 80vh;
  max-width: 80vw;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.md-12 {
  font-size: 12px;
}

.md-14 {
  font-size: 14px;
}

.md-16 {
  font-size: 16px;
}

.md-18 {
  font-size: 18px;
}

.md-20 {
  font-size: 20px;
}

.md-24 {
  font-size: 24px;
}

.text_g_10 {
  color: var(--gray_10);
}

.text_g_20 {
  color: var(--gray_20);
}

.text_g_25 {
  color: var(--gray_25);
}

.text_g_30 {
  color: var(--gray_30);
}

.text_g_40 {
  color: var(--gray_40);
}

.text_g_60 {
  color: var(--gray_60);
}

.text_g_70 {
  color: var(--gray_70);
}

.text_g_80 {
  color: var(--gray_80);
}

.text_main {
  color: var(--main_color);
}

.text_sub {
  color: var(--sub_color);
}

.text_we_300 {
  font-weight: 300;
}

.text_we_400 {
  font-weight: 400;
}

.text_we_500 {
  font-weight: 500;
}

.text_we_700 {
  font-weight: 700;
}

.text_we_900 {
  font-weight: 900;
}

.margin_t_4 {
  margin-top: 4px;
}

.margin_t_8 {
  margin-top: 8px;
}

.margin_t_12 {
  margin-top: 12px;
}

.margin_t_16 {
  margin-top: 16px;
}

.margin_t_20 {
  margin-top: 20px;
}

.margin_b_4 {
  margin-bottom: 4px;
}

.margin_b_8 {
  margin-bottom: 8px;
}

.margin_b_12 {
  margin-bottom: 12px;
}

.margin_b_16 {
  margin-bottom: 16px;
}

.margin_b_20 {
  margin-bottom: 20px;
}

.margin_r_4 {
  margin-right: 4px;
}

.margin_r_8 {
  margin-right: 8px;
}

.margin_r_12 {
  margin-right: 12px;
}

.margin_r_16 {
  margin-right: 16px;
}

.margin_r_20 {
  margin-right: 20px;
}

.dp_none {
  display: none;
}

.dp_block {
  display: block;
}

.dp_inline_block {
  display: inline-block;
}

.dp_inline {
  display: inline;
}

.dp_flex {
  display: flex;
}

.center_sort_layout {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.section_title_layout {
  font-size: 40px;
  font-weight: 800;
  color: var(--gray_40);
}
