/*fonts*/
@font-face {
  font-family: "Akira Expanded";
  src: url('/views/assets/font/Akira\ Expanded\ Demo.otf');
}

@font-face {
  font-family: 'pretendard_black';
  src: url('/views/assets/font/pretendard_black.otf') format('truetype');
}

@font-face {
  font-family: 'pretendard_regular';
  src: url('/views/assets/font/pretendard_regular.otf') format('truetype');
}

@font-face {
  font-family: 'pretendard_medium';
  src: url('/views/assets/font/pretendard_medium.otf') format('truetype');
}

@font-face {
  font-family: 'pretendard_bold';
  src: url('/views/assets/font/pretendard_bold.otf') format('truetype');
}

@font-face {
  font-family: 'pretendard_extrabold';
  src: url('/views/assets/font/pretendard_extrabold.otf') format('truetype');
}

@font-face {
  font-family: 'pretendard_semibold';
  src: url('/views/assets/font/pretendard_semibold.otf') format('truetype');
}

@font-face {
  font-family: 'pretendard_light';
  src: url('/views/assets/font/pretendard_light.otf') format('truetype');
}

/*reset*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: none;
}

.pupup_wrap.on {
  display: flex !important;
}

.pupup_wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.pupup_wrap .pupup_common {
  width: 710px;
  padding: 30px;
  background-color: white;
  border-radius: 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
}

.pupup_wrap .title {
  font-family: 'pretendard_bold';
  font-size: 22px;
  margin-bottom: 10px;
}

.pupup_wrap .text {
  font-family: 'pretendard_medium';
  font-size: 13px;
}

.pupup_wrap .popup_btn_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pupup_wrap .popup_btn_wrap>div {
  font-family: 'pretendard_bold';
  font-size: 18px;
  width: 150px;
  height: 41px;
  line-height: 41px;
  background-color: #F8F8F8;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
}