*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  background: #f8f8f8;
}

.wrap {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  overflow: auto;
}

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;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover,
button:hover {
  cursor: pointer;
}

:root {
  /* Primary color */
  --Primary-100: #3692ff;
  --Primary-200: #1967d6;
  --Primary-300: #1251aa;

  /* Secondary color */
  --Secondary-900: #111827;
  --Secondary-800: #1f2937;
  --Secondary-700: #374151;
  --Secondary-600: #4b5563;
  --Secondary-500: #6b7280;
  --Secondary-400: #9ca3af;
  --Secondary-200: #e5e7eb;
  --Secondary-100: #f3f4f6;
  --Secondary-50: #f9fafb;

  /* error color */
  --error-red: #f74747;

  /* px To rem */
  --pTr-40: 2.5rem; /* 40px */
  --pTr-32: 2rem; /* 32px */
  --pTr-24: 1.5rem; /* 24px */
  --pTr-20: 1.25rem; /* 20px; */
  --pTr-18: 1.125rem; /* 18px; */
  --ptr-16: 1rem; /* 16px */
  --pTr-14: 0.875rem; /* 14px */
}

.swal2-container.swal2-backdrop-show {
  background: rgba(0, 0, 0, 0.7);
}

.swal2-container .swal2-popup.swal2-modal.swal2-show {
  width: 100%;
  max-width: 540px;
  margin: 0;
  padding: 108px 28px 28px 28px;
}

.swal2-container .swal2-content .swal2-html-container {
  color: var(--Cool-Gray-800, #1f2937);
  text-align: center;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.swal2-container .swal2-actions {
  margin: 47px 0 0 0;
  justify-content: flex-end;
}

.swal2-container .swal2-actions .swal2-styled.swal2-confirm {
  width: 120px;
  height: 48px;
  margin: 0;
  padding: 12px 23px;
  border-radius: 8px;
  background: var(--brand-blue, #3692ff);
  line-height: 24px;
}

@media screen and (max-width: 743px) {
  /* mobile 사이즈  */
  .swal2-container .swal2-popup.swal2-modal.swal2-show {
    max-width: 327px;
    padding: 81px 23px 23px 23px;
  }

  .swal2-container .swal2-actions {
    margin: 49px 0 0 0;
    justify-content: center;
  }
}
