@charset "UTF-8";
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,
main {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: inherit;
  color: inherit;
  box-sizing: border-box;
}

dl,
ul,
ol,
menu,
li {
  list-style: none;
}

fieldset,
img {
  border: 0 none;
  box-sizing: border-box;
}

input,
select,
textarea,
button {
  vertical-align: middle;
  margin: 0;
  padding: 0;
  font-family: inherit;
  box-sizing: border-box;
}

button {
  border: 0 none;
  background-color: transparent;
  cursor: pointer;
  box-sizing: border-box;
}

address,
caption,
cite,
code,
dfn,
em,
var {
  font-style: normal;
  font-weight: normal;
  box-sizing: border-box;
}

::before,
::after,
:before,
:after {
  box-sizing: border-box;
}

input,
textarea,
img {
  max-width: 100%;
}

a,
a:hover,
a:visited,
a:active {
  text-decoration: none;
}

sup {
  font-size: small;
  vertical-align: text-top;
}

sub {
  font-size: small;
  vertical-align: text-bottom;
}

button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
} /* Hide Native Arrow IE 10, 11 */
table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

table caption {
  overflow: hidden;
  font-size: 0;
  text-indent: -10px;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
} /* HTML5 for older browsers */
section,
main {
  display: block;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6,
em,
strong {
  font-weight: 700;
}

textarea {
  resize: none;
}

input:disabled,
textarea:disabled {
  opacity: 1;
  -webkit-text-fill-color: inherit;
}

input[type=text],
input[type=search],
input[type=password] {
  -webkit-appearance: none;
  border-radius: 0;
}

input::-webkit-search-cancel-button,
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

[hidden] {
  display: none;
}

@font-face {
  font-family: "Pretendard GOV";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PretendardGOV-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Pretendard GOV";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PretendardGOV-Bold.woff2") format("woff2");
}
/* UI */
body {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  font-family: "Pretendard GOV", "Noto Sans KR", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
}

/* 레이아웃 */
.section {
  display: flex;
  flex-direction: column;
}
.section.inline {
  display: inline-flex;
}
.section.flex-col {
  flex-direction: row;
}
.section.wrap {
  flex-wrap: wrap;
}
.section.justify-center {
  justify-content: center;
}
.section.justify-between {
  justify-content: space-between;
}
.section.justify-start {
  justify-content: flex-start;
}
.section.justify-end {
  justify-content: flex-end;
}
.section.align-center {
  align-items: center;
}
.section.align-start {
  align-items: flex-start;
}
.section.align-end {
  align-items: flex-end;
}
.section.gap-4 {
  gap: 4px;
}
.section.row-gap-4 {
  row-gap: 4px;
}
.section.col-gap-4 {
  column-gap: 4px;
}
.section.gap-8 {
  gap: 8px;
}
.section.row-gap-8 {
  row-gap: 8px;
}
.section.col-gap-8 {
  column-gap: 8px;
}
.section.gap-12 {
  gap: 12px;
}
.section.row-gap-12 {
  row-gap: 12px;
}
.section.col-gap-12 {
  column-gap: 12px;
}
.section.gap-16 {
  gap: 16px;
}
.section.row-gap-16 {
  row-gap: 16px;
}
.section.col-gap-16 {
  column-gap: 16px;
}
.section.gap-20 {
  gap: 20px;
}
.section.row-gap-20 {
  row-gap: 20px;
}
.section.col-gap-20 {
  column-gap: 20px;
}
.section.gap-24 {
  gap: 24px;
}
.section.row-gap-24 {
  row-gap: 24px;
}
.section.col-gap-24 {
  column-gap: 24px;
}
.section.gap-28 {
  gap: 28px;
}
.section.row-gap-28 {
  row-gap: 28px;
}
.section.col-gap-28 {
  column-gap: 28px;
}
.section.gap-32 {
  gap: 32px;
}
.section.row-gap-32 {
  row-gap: 32px;
}
.section.col-gap-32 {
  column-gap: 32px;
}
.section.gap-36 {
  gap: 36px;
}
.section.row-gap-36 {
  row-gap: 36px;
}
.section.col-gap-36 {
  column-gap: 36px;
}
.section.gap-40 {
  gap: 40px;
}
.section.row-gap-40 {
  row-gap: 40px;
}
.section.col-gap-40 {
  column-gap: 40px;
}
.section.gap-44 {
  gap: 44px;
}
.section.row-gap-44 {
  row-gap: 44px;
}
.section.col-gap-44 {
  column-gap: 44px;
}
.section.gap-48 {
  gap: 48px;
}
.section.row-gap-48 {
  row-gap: 48px;
}
.section.col-gap-48 {
  column-gap: 48px;
}
.section.gap-52 {
  gap: 52px;
}
.section.row-gap-52 {
  row-gap: 52px;
}
.section.col-gap-52 {
  column-gap: 52px;
}
.section.gap-56 {
  gap: 56px;
}
.section.row-gap-56 {
  row-gap: 56px;
}
.section.col-gap-56 {
  column-gap: 56px;
}
.section.gap-60 {
  gap: 60px;
}
.section.row-gap-60 {
  row-gap: 60px;
}
.section.col-gap-60 {
  column-gap: 60px;
}
.section.gap-64 {
  gap: 64px;
}
.section.row-gap-64 {
  row-gap: 64px;
}
.section.col-gap-64 {
  column-gap: 64px;
}
.section.gap-68 {
  gap: 68px;
}
.section.row-gap-68 {
  row-gap: 68px;
}
.section.col-gap-68 {
  column-gap: 68px;
}
.section.gap-72 {
  gap: 72px;
}
.section.row-gap-72 {
  row-gap: 72px;
}
.section.col-gap-72 {
  column-gap: 72px;
}
.section.gap-76 {
  gap: 76px;
}
.section.row-gap-76 {
  row-gap: 76px;
}
.section.col-gap-76 {
  column-gap: 76px;
}
.section.gap-80 {
  gap: 80px;
}
.section.row-gap-80 {
  row-gap: 80px;
}
.section.col-gap-80 {
  column-gap: 80px;
}
.section.gap-84 {
  gap: 84px;
}
.section.row-gap-84 {
  row-gap: 84px;
}
.section.col-gap-84 {
  column-gap: 84px;
}
.section.gap-88 {
  gap: 88px;
}
.section.row-gap-88 {
  row-gap: 88px;
}
.section.col-gap-88 {
  column-gap: 88px;
}
.section.gap-92 {
  gap: 92px;
}
.section.row-gap-92 {
  row-gap: 92px;
}
.section.col-gap-92 {
  column-gap: 92px;
}
.section.gap-96 {
  gap: 96px;
}
.section.row-gap-96 {
  row-gap: 96px;
}
.section.col-gap-96 {
  column-gap: 96px;
}
.section.gap-100 {
  gap: 100px;
}
.section.row-gap-100 {
  row-gap: 100px;
}
.section.col-gap-100 {
  column-gap: 100px;
}
.section.gap-104 {
  gap: 104px;
}
.section.row-gap-104 {
  row-gap: 104px;
}
.section.col-gap-104 {
  column-gap: 104px;
}
.section.gap-108 {
  gap: 108px;
}
.section.row-gap-108 {
  row-gap: 108px;
}
.section.col-gap-108 {
  column-gap: 108px;
}
.section.gap-112 {
  gap: 112px;
}
.section.row-gap-112 {
  row-gap: 112px;
}
.section.col-gap-112 {
  column-gap: 112px;
}
.section.gap-116 {
  gap: 116px;
}
.section.row-gap-116 {
  row-gap: 116px;
}
.section.col-gap-116 {
  column-gap: 116px;
}
.section.gap-120 {
  gap: 120px;
}
.section.row-gap-120 {
  row-gap: 120px;
}
.section.col-gap-120 {
  column-gap: 120px;
}
.section.gap-124 {
  gap: 124px;
}
.section.row-gap-124 {
  row-gap: 124px;
}
.section.col-gap-124 {
  column-gap: 124px;
}
.section.gap-128 {
  gap: 128px;
}
.section.row-gap-128 {
  row-gap: 128px;
}
.section.col-gap-128 {
  column-gap: 128px;
}
.section.gap-132 {
  gap: 132px;
}
.section.row-gap-132 {
  row-gap: 132px;
}
.section.col-gap-132 {
  column-gap: 132px;
}
.section.gap-136 {
  gap: 136px;
}
.section.row-gap-136 {
  row-gap: 136px;
}
.section.col-gap-136 {
  column-gap: 136px;
}
.section.gap-140 {
  gap: 140px;
}
.section.row-gap-140 {
  row-gap: 140px;
}
.section.col-gap-140 {
  column-gap: 140px;
}
.section.gap-144 {
  gap: 144px;
}
.section.row-gap-144 {
  row-gap: 144px;
}
.section.col-gap-144 {
  column-gap: 144px;
}
.section.gap-148 {
  gap: 148px;
}
.section.row-gap-148 {
  row-gap: 148px;
}
.section.col-gap-148 {
  column-gap: 148px;
}
.section.gap-152 {
  gap: 152px;
}
.section.row-gap-152 {
  row-gap: 152px;
}
.section.col-gap-152 {
  column-gap: 152px;
}
.section.gap-156 {
  gap: 156px;
}
.section.row-gap-156 {
  row-gap: 156px;
}
.section.col-gap-156 {
  column-gap: 156px;
}
.section.gap-160 {
  gap: 160px;
}
.section.row-gap-160 {
  row-gap: 160px;
}
.section.col-gap-160 {
  column-gap: 160px;
}
.section.gap-164 {
  gap: 164px;
}
.section.row-gap-164 {
  row-gap: 164px;
}
.section.col-gap-164 {
  column-gap: 164px;
}
.section.gap-168 {
  gap: 168px;
}
.section.row-gap-168 {
  row-gap: 168px;
}
.section.col-gap-168 {
  column-gap: 168px;
}
.section.gap-172 {
  gap: 172px;
}
.section.row-gap-172 {
  row-gap: 172px;
}
.section.col-gap-172 {
  column-gap: 172px;
}
.section.gap-176 {
  gap: 176px;
}
.section.row-gap-176 {
  row-gap: 176px;
}
.section.col-gap-176 {
  column-gap: 176px;
}
.section.gap-180 {
  gap: 180px;
}
.section.row-gap-180 {
  row-gap: 180px;
}
.section.col-gap-180 {
  column-gap: 180px;
}
.section.gap-184 {
  gap: 184px;
}
.section.row-gap-184 {
  row-gap: 184px;
}
.section.col-gap-184 {
  column-gap: 184px;
}
.section.gap-188 {
  gap: 188px;
}
.section.row-gap-188 {
  row-gap: 188px;
}
.section.col-gap-188 {
  column-gap: 188px;
}
.section.gap-192 {
  gap: 192px;
}
.section.row-gap-192 {
  row-gap: 192px;
}
.section.col-gap-192 {
  column-gap: 192px;
}
.section.gap-196 {
  gap: 196px;
}
.section.row-gap-196 {
  row-gap: 196px;
}
.section.col-gap-196 {
  column-gap: 196px;
}
.section.gap-200 {
  gap: 200px;
}
.section.row-gap-200 {
  row-gap: 200px;
}
.section.col-gap-200 {
  column-gap: 200px;
}

/* 안쪽 여백 (padding) - 4 ~ 80px */
.inside-0 {
  padding: 0px !important;
}

.inside-x-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.inside-y-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.inside-t-0 {
  padding-top: 0px !important;
}

.inside-b-0 {
  padding-bottom: 0px !important;
}

.inside-l-0 {
  padding-left: 0px !important;
}

.inside-r-0 {
  padding-right: 0px !important;
}

.inside-4 {
  padding: 4px !important;
}

.inside-x-4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.inside-y-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.inside-t-4 {
  padding-top: 4px !important;
}

.inside-b-4 {
  padding-bottom: 4px !important;
}

.inside-l-4 {
  padding-left: 4px !important;
}

.inside-r-4 {
  padding-right: 4px !important;
}

.inside-8 {
  padding: 8px !important;
}

.inside-x-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.inside-y-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.inside-t-8 {
  padding-top: 8px !important;
}

.inside-b-8 {
  padding-bottom: 8px !important;
}

.inside-l-8 {
  padding-left: 8px !important;
}

.inside-r-8 {
  padding-right: 8px !important;
}

.inside-12 {
  padding: 12px !important;
}

.inside-x-12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.inside-y-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.inside-t-12 {
  padding-top: 12px !important;
}

.inside-b-12 {
  padding-bottom: 12px !important;
}

.inside-l-12 {
  padding-left: 12px !important;
}

.inside-r-12 {
  padding-right: 12px !important;
}

.inside-16 {
  padding: 16px !important;
}

.inside-x-16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.inside-y-16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.inside-t-16 {
  padding-top: 16px !important;
}

.inside-b-16 {
  padding-bottom: 16px !important;
}

.inside-l-16 {
  padding-left: 16px !important;
}

.inside-r-16 {
  padding-right: 16px !important;
}

.inside-20 {
  padding: 20px !important;
}

.inside-x-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.inside-y-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.inside-t-20 {
  padding-top: 20px !important;
}

.inside-b-20 {
  padding-bottom: 20px !important;
}

.inside-l-20 {
  padding-left: 20px !important;
}

.inside-r-20 {
  padding-right: 20px !important;
}

.inside-24 {
  padding: 24px !important;
}

.inside-x-24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.inside-y-24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.inside-t-24 {
  padding-top: 24px !important;
}

.inside-b-24 {
  padding-bottom: 24px !important;
}

.inside-l-24 {
  padding-left: 24px !important;
}

.inside-r-24 {
  padding-right: 24px !important;
}

.inside-28 {
  padding: 28px !important;
}

.inside-x-28 {
  padding-left: 28px !important;
  padding-right: 28px !important;
}

.inside-y-28 {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.inside-t-28 {
  padding-top: 28px !important;
}

.inside-b-28 {
  padding-bottom: 28px !important;
}

.inside-l-28 {
  padding-left: 28px !important;
}

.inside-r-28 {
  padding-right: 28px !important;
}

.inside-32 {
  padding: 32px !important;
}

.inside-x-32 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.inside-y-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.inside-t-32 {
  padding-top: 32px !important;
}

.inside-b-32 {
  padding-bottom: 32px !important;
}

.inside-l-32 {
  padding-left: 32px !important;
}

.inside-r-32 {
  padding-right: 32px !important;
}

.inside-36 {
  padding: 36px !important;
}

.inside-x-36 {
  padding-left: 36px !important;
  padding-right: 36px !important;
}

.inside-y-36 {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

.inside-t-36 {
  padding-top: 36px !important;
}

.inside-b-36 {
  padding-bottom: 36px !important;
}

.inside-l-36 {
  padding-left: 36px !important;
}

.inside-r-36 {
  padding-right: 36px !important;
}

.inside-40 {
  padding: 40px !important;
}

.inside-x-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.inside-y-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.inside-t-40 {
  padding-top: 40px !important;
}

.inside-b-40 {
  padding-bottom: 40px !important;
}

.inside-l-40 {
  padding-left: 40px !important;
}

.inside-r-40 {
  padding-right: 40px !important;
}

.inside-44 {
  padding: 44px !important;
}

.inside-x-44 {
  padding-left: 44px !important;
  padding-right: 44px !important;
}

.inside-y-44 {
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}

.inside-t-44 {
  padding-top: 44px !important;
}

.inside-b-44 {
  padding-bottom: 44px !important;
}

.inside-l-44 {
  padding-left: 44px !important;
}

.inside-r-44 {
  padding-right: 44px !important;
}

.inside-48 {
  padding: 48px !important;
}

.inside-x-48 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.inside-y-48 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.inside-t-48 {
  padding-top: 48px !important;
}

.inside-b-48 {
  padding-bottom: 48px !important;
}

.inside-l-48 {
  padding-left: 48px !important;
}

.inside-r-48 {
  padding-right: 48px !important;
}

.inside-52 {
  padding: 52px !important;
}

.inside-x-52 {
  padding-left: 52px !important;
  padding-right: 52px !important;
}

.inside-y-52 {
  padding-top: 52px !important;
  padding-bottom: 52px !important;
}

.inside-t-52 {
  padding-top: 52px !important;
}

.inside-b-52 {
  padding-bottom: 52px !important;
}

.inside-l-52 {
  padding-left: 52px !important;
}

.inside-r-52 {
  padding-right: 52px !important;
}

.inside-56 {
  padding: 56px !important;
}

.inside-x-56 {
  padding-left: 56px !important;
  padding-right: 56px !important;
}

.inside-y-56 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.inside-t-56 {
  padding-top: 56px !important;
}

.inside-b-56 {
  padding-bottom: 56px !important;
}

.inside-l-56 {
  padding-left: 56px !important;
}

.inside-r-56 {
  padding-right: 56px !important;
}

.inside-60 {
  padding: 60px !important;
}

.inside-x-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.inside-y-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.inside-t-60 {
  padding-top: 60px !important;
}

.inside-b-60 {
  padding-bottom: 60px !important;
}

.inside-l-60 {
  padding-left: 60px !important;
}

.inside-r-60 {
  padding-right: 60px !important;
}

.inside-64 {
  padding: 64px !important;
}

.inside-x-64 {
  padding-left: 64px !important;
  padding-right: 64px !important;
}

.inside-y-64 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.inside-t-64 {
  padding-top: 64px !important;
}

.inside-b-64 {
  padding-bottom: 64px !important;
}

.inside-l-64 {
  padding-left: 64px !important;
}

.inside-r-64 {
  padding-right: 64px !important;
}

.inside-68 {
  padding: 68px !important;
}

.inside-x-68 {
  padding-left: 68px !important;
  padding-right: 68px !important;
}

.inside-y-68 {
  padding-top: 68px !important;
  padding-bottom: 68px !important;
}

.inside-t-68 {
  padding-top: 68px !important;
}

.inside-b-68 {
  padding-bottom: 68px !important;
}

.inside-l-68 {
  padding-left: 68px !important;
}

.inside-r-68 {
  padding-right: 68px !important;
}

.inside-72 {
  padding: 72px !important;
}

.inside-x-72 {
  padding-left: 72px !important;
  padding-right: 72px !important;
}

.inside-y-72 {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.inside-t-72 {
  padding-top: 72px !important;
}

.inside-b-72 {
  padding-bottom: 72px !important;
}

.inside-l-72 {
  padding-left: 72px !important;
}

.inside-r-72 {
  padding-right: 72px !important;
}

.inside-76 {
  padding: 76px !important;
}

.inside-x-76 {
  padding-left: 76px !important;
  padding-right: 76px !important;
}

.inside-y-76 {
  padding-top: 76px !important;
  padding-bottom: 76px !important;
}

.inside-t-76 {
  padding-top: 76px !important;
}

.inside-b-76 {
  padding-bottom: 76px !important;
}

.inside-l-76 {
  padding-left: 76px !important;
}

.inside-r-76 {
  padding-right: 76px !important;
}

.inside-80 {
  padding: 80px !important;
}

.inside-x-80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

.inside-y-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.inside-t-80 {
  padding-top: 80px !important;
}

.inside-b-80 {
  padding-bottom: 80px !important;
}

.inside-l-80 {
  padding-left: 80px !important;
}

.inside-r-80 {
  padding-right: 80px !important;
}

/* 폰트 */
.font {
  font-weight: 400;
  /* 크기 (13 ~ 64px) */
  /* 제목 공통 */
}
.font.bold {
  font-weight: 700;
}
.font.light {
  font-weight: 400;
}
.font.size-13 {
  font-size: 13px;
}
.font.size-14 {
  font-size: 14px;
}
.font.size-15 {
  font-size: 15px;
}
.font.size-16 {
  font-size: 16px;
}
.font.size-17 {
  font-size: 17px;
}
.font.size-18 {
  font-size: 18px;
}
.font.size-19 {
  font-size: 19px;
}
.font.size-20 {
  font-size: 20px;
}
.font.size-21 {
  font-size: 21px;
}
.font.size-22 {
  font-size: 22px;
}
.font.size-23 {
  font-size: 23px;
}
.font.size-24 {
  font-size: 24px;
}
.font.size-25 {
  font-size: 25px;
}
.font.size-26 {
  font-size: 26px;
}
.font.size-27 {
  font-size: 27px;
}
.font.size-28 {
  font-size: 28px;
}
.font.size-29 {
  font-size: 29px;
}
.font.size-30 {
  font-size: 30px;
}
.font.size-31 {
  font-size: 31px;
}
.font.size-32 {
  font-size: 32px;
}
.font.size-33 {
  font-size: 33px;
}
.font.size-34 {
  font-size: 34px;
}
.font.size-35 {
  font-size: 35px;
}
.font.size-36 {
  font-size: 36px;
}
.font.size-37 {
  font-size: 37px;
}
.font.size-38 {
  font-size: 38px;
}
.font.size-39 {
  font-size: 39px;
}
.font.size-40 {
  font-size: 40px;
}
.font.size-41 {
  font-size: 41px;
}
.font.size-42 {
  font-size: 42px;
}
.font.size-43 {
  font-size: 43px;
}
.font.size-44 {
  font-size: 44px;
}
.font.size-45 {
  font-size: 45px;
}
.font.size-46 {
  font-size: 46px;
}
.font.size-47 {
  font-size: 47px;
}
.font.size-48 {
  font-size: 48px;
}
.font.size-49 {
  font-size: 49px;
}
.font.size-50 {
  font-size: 50px;
}
.font.size-51 {
  font-size: 51px;
}
.font.size-52 {
  font-size: 52px;
}
.font.size-53 {
  font-size: 53px;
}
.font.size-54 {
  font-size: 54px;
}
.font.size-55 {
  font-size: 55px;
}
.font.size-56 {
  font-size: 56px;
}
.font.size-57 {
  font-size: 57px;
}
.font.size-58 {
  font-size: 58px;
}
.font.size-59 {
  font-size: 59px;
}
.font.size-60 {
  font-size: 60px;
}
.font.size-61 {
  font-size: 61px;
}
.font.size-62 {
  font-size: 62px;
}
.font.size-63 {
  font-size: 63px;
}
.font.size-64 {
  font-size: 64px;
}
.font.title {
  line-height: 1.2;
  word-break: keep-all;
}

/* 컬러 */
.color.primary {
  color: #305bc4;
}
.color.primary-10 {
  color: #11317e;
}
.color.secondary {
  color: #666;
}
.color.white {
  color: #fff;
}
.color.black {
  color: #000;
}
.color.gray {
  color: #666;
}
.color.red {
  color: #f44336;
}

/* 버튼 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: auto;
  height: 56px;
  border-radius: 8px;
  padding: 0 20px;
  background-color: #305bc4;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background-color 0.4s ease, transform 0.35s ease, box-shadow 0.4s ease;
}
.btn:hover {
  background-color: #1e45a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(48, 91, 196, 0.35);
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(48, 91, 196, 0.25);
}
.btn:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px #305bc4, inset 0 0 0 4px #fff;
  transform: none;
}
.btn.btn-outline {
  background-color: transparent;
  color: #305bc4;
  border: 1.5px solid #305bc4;
}
.btn.btn-outline:hover {
  background-color: #305bc4;
  color: #fff;
  box-shadow: 0 8px 20px rgba(48, 91, 196, 0.25);
}
.btn.btn-outline:active {
  transform: translateY(0);
}
.btn.btn-outline:focus-visible {
  box-shadow: inset 0 0 0 2px #305bc4, inset 0 0 0 4px #fff;
}
.btn.btn-ghost {
  background-color: transparent;
  color: #305bc4;
  border: none;
}
.btn.btn-ghost:hover {
  background-color: rgba(48, 91, 196, 0.08);
  transform: none;
  box-shadow: none;
}
.btn.radius {
  border-radius: 100px !important;
}
.btn.sm {
  height: 40px;
  padding: 0 14px;
  font-size: 13px;
  border-radius: 6px;
}
.btn.lg {
  height: 64px;
  padding: 0 28px;
  font-size: 17px;
  border-radius: 12px;
}
.btn.full {
  width: 100%;
}
.btn.secondary {
  background-color: #edf3ff;
  border: 1px solid #93b3ff;
  color: #305bc4;
}
.btn.white {
  background-color: #fff;
  color: #000;
}

/* 배경 */
.bg.main {
  background: linear-gradient(180deg, #C8E3FF 0%, #FFFFFF 56.25%, #F1F8FF 62.5%);
}
.bg.white {
  background-color: #fff;
}
.bg.primary {
  background-color: #F3FAFF;
}
.bg.gray {
  background-color: #F5F5F5;
}

/* 보더 */
.border {
  /* border-width - 1 ~ 10px */
  /* border-radius - 1 ~ 100px */
}
.border.solid {
  border: 1px solid #000;
}
.border.solid-t {
  border-top: 1px solid #000;
}
.border.solid-r {
  border-right: 1px solid #000;
}
.border.solid-b {
  border-bottom: 1px solid #000;
}
.border.solid-l {
  border-left: 1px solid #000;
}
.border.dashed {
  border: 1px dashed #000;
}
.border.dashed-t {
  border-top: 1px dashed #000;
}
.border.dashed-r {
  border-right: 1px dashed #000;
}
.border.dashed-b {
  border-bottom: 1px dashed #000;
}
.border.dashed-l {
  border-left: 1px dashed #000;
}
.border.dotted {
  border: 1px dotted #000;
}
.border.dotted-t {
  border-top: 1px dotted #000;
}
.border.dotted-r {
  border-right: 1px dotted #000;
}
.border.dotted-b {
  border-bottom: 1px dotted #000;
}
.border.dotted-l {
  border-left: 1px dotted #000;
}
.border.width-1 {
  border-width: 1px;
}
.border.width-t-1 {
  border-top-width: 1px;
}
.border.width-r-1 {
  border-right-width: 1px;
}
.border.width-b-1 {
  border-bottom-width: 1px;
}
.border.width-l-1 {
  border-left-width: 1px;
}
.border.width-2 {
  border-width: 2px;
}
.border.width-t-2 {
  border-top-width: 2px;
}
.border.width-r-2 {
  border-right-width: 2px;
}
.border.width-b-2 {
  border-bottom-width: 2px;
}
.border.width-l-2 {
  border-left-width: 2px;
}
.border.width-3 {
  border-width: 3px;
}
.border.width-t-3 {
  border-top-width: 3px;
}
.border.width-r-3 {
  border-right-width: 3px;
}
.border.width-b-3 {
  border-bottom-width: 3px;
}
.border.width-l-3 {
  border-left-width: 3px;
}
.border.width-4 {
  border-width: 4px;
}
.border.width-t-4 {
  border-top-width: 4px;
}
.border.width-r-4 {
  border-right-width: 4px;
}
.border.width-b-4 {
  border-bottom-width: 4px;
}
.border.width-l-4 {
  border-left-width: 4px;
}
.border.width-5 {
  border-width: 5px;
}
.border.width-t-5 {
  border-top-width: 5px;
}
.border.width-r-5 {
  border-right-width: 5px;
}
.border.width-b-5 {
  border-bottom-width: 5px;
}
.border.width-l-5 {
  border-left-width: 5px;
}
.border.width-6 {
  border-width: 6px;
}
.border.width-t-6 {
  border-top-width: 6px;
}
.border.width-r-6 {
  border-right-width: 6px;
}
.border.width-b-6 {
  border-bottom-width: 6px;
}
.border.width-l-6 {
  border-left-width: 6px;
}
.border.width-7 {
  border-width: 7px;
}
.border.width-t-7 {
  border-top-width: 7px;
}
.border.width-r-7 {
  border-right-width: 7px;
}
.border.width-b-7 {
  border-bottom-width: 7px;
}
.border.width-l-7 {
  border-left-width: 7px;
}
.border.width-8 {
  border-width: 8px;
}
.border.width-t-8 {
  border-top-width: 8px;
}
.border.width-r-8 {
  border-right-width: 8px;
}
.border.width-b-8 {
  border-bottom-width: 8px;
}
.border.width-l-8 {
  border-left-width: 8px;
}
.border.width-9 {
  border-width: 9px;
}
.border.width-t-9 {
  border-top-width: 9px;
}
.border.width-r-9 {
  border-right-width: 9px;
}
.border.width-b-9 {
  border-bottom-width: 9px;
}
.border.width-l-9 {
  border-left-width: 9px;
}
.border.width-10 {
  border-width: 10px;
}
.border.width-t-10 {
  border-top-width: 10px;
}
.border.width-r-10 {
  border-right-width: 10px;
}
.border.width-b-10 {
  border-bottom-width: 10px;
}
.border.width-l-10 {
  border-left-width: 10px;
}
.border.radius-1 {
  border-radius: 1px;
}
.border.radius-t-1 {
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}
.border.radius-b-1 {
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
}
.border.radius-l-1 {
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
}
.border.radius-r-1 {
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
}
.border.radius-2 {
  border-radius: 2px;
}
.border.radius-t-2 {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.border.radius-b-2 {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.border.radius-l-2 {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.border.radius-r-2 {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.border.radius-3 {
  border-radius: 3px;
}
.border.radius-t-3 {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.border.radius-b-3 {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.border.radius-l-3 {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.border.radius-r-3 {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.border.radius-4 {
  border-radius: 4px;
}
.border.radius-t-4 {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.border.radius-b-4 {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.border.radius-l-4 {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.border.radius-r-4 {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.border.radius-5 {
  border-radius: 5px;
}
.border.radius-t-5 {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.border.radius-b-5 {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.border.radius-l-5 {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.border.radius-r-5 {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.border.radius-6 {
  border-radius: 6px;
}
.border.radius-t-6 {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.border.radius-b-6 {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.border.radius-l-6 {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.border.radius-r-6 {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.border.radius-7 {
  border-radius: 7px;
}
.border.radius-t-7 {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.border.radius-b-7 {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
.border.radius-l-7 {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
.border.radius-r-7 {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.border.radius-8 {
  border-radius: 8px;
}
.border.radius-t-8 {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.border.radius-b-8 {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.border.radius-l-8 {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.border.radius-r-8 {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.border.radius-9 {
  border-radius: 9px;
}
.border.radius-t-9 {
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}
.border.radius-b-9 {
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}
.border.radius-l-9 {
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
}
.border.radius-r-9 {
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
}
.border.radius-10 {
  border-radius: 10px;
}
.border.radius-t-10 {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.border.radius-b-10 {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.border.radius-l-10 {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.border.radius-r-10 {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.border.radius-11 {
  border-radius: 11px;
}
.border.radius-t-11 {
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
}
.border.radius-b-11 {
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
}
.border.radius-l-11 {
  border-top-left-radius: 11px;
  border-bottom-left-radius: 11px;
}
.border.radius-r-11 {
  border-top-right-radius: 11px;
  border-bottom-right-radius: 11px;
}
.border.radius-12 {
  border-radius: 12px;
}
.border.radius-t-12 {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.border.radius-b-12 {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.border.radius-l-12 {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.border.radius-r-12 {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.border.radius-13 {
  border-radius: 13px;
}
.border.radius-t-13 {
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}
.border.radius-b-13 {
  border-bottom-left-radius: 13px;
  border-bottom-right-radius: 13px;
}
.border.radius-l-13 {
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
}
.border.radius-r-13 {
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
}
.border.radius-14 {
  border-radius: 14px;
}
.border.radius-t-14 {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.border.radius-b-14 {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.border.radius-l-14 {
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}
.border.radius-r-14 {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}
.border.radius-15 {
  border-radius: 15px;
}
.border.radius-t-15 {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.border.radius-b-15 {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.border.radius-l-15 {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.border.radius-r-15 {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.border.radius-16 {
  border-radius: 16px;
}
.border.radius-t-16 {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.border.radius-b-16 {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.border.radius-l-16 {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
.border.radius-r-16 {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
.border.radius-17 {
  border-radius: 17px;
}
.border.radius-t-17 {
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
}
.border.radius-b-17 {
  border-bottom-left-radius: 17px;
  border-bottom-right-radius: 17px;
}
.border.radius-l-17 {
  border-top-left-radius: 17px;
  border-bottom-left-radius: 17px;
}
.border.radius-r-17 {
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
}
.border.radius-18 {
  border-radius: 18px;
}
.border.radius-t-18 {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.border.radius-b-18 {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}
.border.radius-l-18 {
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}
.border.radius-r-18 {
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}
.border.radius-19 {
  border-radius: 19px;
}
.border.radius-t-19 {
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
}
.border.radius-b-19 {
  border-bottom-left-radius: 19px;
  border-bottom-right-radius: 19px;
}
.border.radius-l-19 {
  border-top-left-radius: 19px;
  border-bottom-left-radius: 19px;
}
.border.radius-r-19 {
  border-top-right-radius: 19px;
  border-bottom-right-radius: 19px;
}
.border.radius-20 {
  border-radius: 20px;
}
.border.radius-t-20 {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.border.radius-b-20 {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.border.radius-l-20 {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.border.radius-r-20 {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.border.radius-21 {
  border-radius: 21px;
}
.border.radius-t-21 {
  border-top-left-radius: 21px;
  border-top-right-radius: 21px;
}
.border.radius-b-21 {
  border-bottom-left-radius: 21px;
  border-bottom-right-radius: 21px;
}
.border.radius-l-21 {
  border-top-left-radius: 21px;
  border-bottom-left-radius: 21px;
}
.border.radius-r-21 {
  border-top-right-radius: 21px;
  border-bottom-right-radius: 21px;
}
.border.radius-22 {
  border-radius: 22px;
}
.border.radius-t-22 {
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}
.border.radius-b-22 {
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}
.border.radius-l-22 {
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
}
.border.radius-r-22 {
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
}
.border.radius-23 {
  border-radius: 23px;
}
.border.radius-t-23 {
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
}
.border.radius-b-23 {
  border-bottom-left-radius: 23px;
  border-bottom-right-radius: 23px;
}
.border.radius-l-23 {
  border-top-left-radius: 23px;
  border-bottom-left-radius: 23px;
}
.border.radius-r-23 {
  border-top-right-radius: 23px;
  border-bottom-right-radius: 23px;
}
.border.radius-24 {
  border-radius: 24px;
}
.border.radius-t-24 {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.border.radius-b-24 {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.border.radius-l-24 {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}
.border.radius-r-24 {
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}
.border.radius-25 {
  border-radius: 25px;
}
.border.radius-t-25 {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.border.radius-b-25 {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.border.radius-l-25 {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
.border.radius-r-25 {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
.border.radius-26 {
  border-radius: 26px;
}
.border.radius-t-26 {
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
}
.border.radius-b-26 {
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
}
.border.radius-l-26 {
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
}
.border.radius-r-26 {
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
}
.border.radius-27 {
  border-radius: 27px;
}
.border.radius-t-27 {
  border-top-left-radius: 27px;
  border-top-right-radius: 27px;
}
.border.radius-b-27 {
  border-bottom-left-radius: 27px;
  border-bottom-right-radius: 27px;
}
.border.radius-l-27 {
  border-top-left-radius: 27px;
  border-bottom-left-radius: 27px;
}
.border.radius-r-27 {
  border-top-right-radius: 27px;
  border-bottom-right-radius: 27px;
}
.border.radius-28 {
  border-radius: 28px;
}
.border.radius-t-28 {
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}
.border.radius-b-28 {
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}
.border.radius-l-28 {
  border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;
}
.border.radius-r-28 {
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
}
.border.radius-29 {
  border-radius: 29px;
}
.border.radius-t-29 {
  border-top-left-radius: 29px;
  border-top-right-radius: 29px;
}
.border.radius-b-29 {
  border-bottom-left-radius: 29px;
  border-bottom-right-radius: 29px;
}
.border.radius-l-29 {
  border-top-left-radius: 29px;
  border-bottom-left-radius: 29px;
}
.border.radius-r-29 {
  border-top-right-radius: 29px;
  border-bottom-right-radius: 29px;
}
.border.radius-30 {
  border-radius: 30px;
}
.border.radius-t-30 {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.border.radius-b-30 {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.border.radius-l-30 {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.border.radius-r-30 {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.border.radius-31 {
  border-radius: 31px;
}
.border.radius-t-31 {
  border-top-left-radius: 31px;
  border-top-right-radius: 31px;
}
.border.radius-b-31 {
  border-bottom-left-radius: 31px;
  border-bottom-right-radius: 31px;
}
.border.radius-l-31 {
  border-top-left-radius: 31px;
  border-bottom-left-radius: 31px;
}
.border.radius-r-31 {
  border-top-right-radius: 31px;
  border-bottom-right-radius: 31px;
}
.border.radius-32 {
  border-radius: 32px;
}
.border.radius-t-32 {
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
.border.radius-b-32 {
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}
.border.radius-l-32 {
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
}
.border.radius-r-32 {
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
}
.border.radius-33 {
  border-radius: 33px;
}
.border.radius-t-33 {
  border-top-left-radius: 33px;
  border-top-right-radius: 33px;
}
.border.radius-b-33 {
  border-bottom-left-radius: 33px;
  border-bottom-right-radius: 33px;
}
.border.radius-l-33 {
  border-top-left-radius: 33px;
  border-bottom-left-radius: 33px;
}
.border.radius-r-33 {
  border-top-right-radius: 33px;
  border-bottom-right-radius: 33px;
}
.border.radius-34 {
  border-radius: 34px;
}
.border.radius-t-34 {
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
}
.border.radius-b-34 {
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
}
.border.radius-l-34 {
  border-top-left-radius: 34px;
  border-bottom-left-radius: 34px;
}
.border.radius-r-34 {
  border-top-right-radius: 34px;
  border-bottom-right-radius: 34px;
}
.border.radius-35 {
  border-radius: 35px;
}
.border.radius-t-35 {
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
}
.border.radius-b-35 {
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}
.border.radius-l-35 {
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
.border.radius-r-35 {
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
}
.border.radius-36 {
  border-radius: 36px;
}
.border.radius-t-36 {
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}
.border.radius-b-36 {
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
}
.border.radius-l-36 {
  border-top-left-radius: 36px;
  border-bottom-left-radius: 36px;
}
.border.radius-r-36 {
  border-top-right-radius: 36px;
  border-bottom-right-radius: 36px;
}
.border.radius-37 {
  border-radius: 37px;
}
.border.radius-t-37 {
  border-top-left-radius: 37px;
  border-top-right-radius: 37px;
}
.border.radius-b-37 {
  border-bottom-left-radius: 37px;
  border-bottom-right-radius: 37px;
}
.border.radius-l-37 {
  border-top-left-radius: 37px;
  border-bottom-left-radius: 37px;
}
.border.radius-r-37 {
  border-top-right-radius: 37px;
  border-bottom-right-radius: 37px;
}
.border.radius-38 {
  border-radius: 38px;
}
.border.radius-t-38 {
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
}
.border.radius-b-38 {
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
}
.border.radius-l-38 {
  border-top-left-radius: 38px;
  border-bottom-left-radius: 38px;
}
.border.radius-r-38 {
  border-top-right-radius: 38px;
  border-bottom-right-radius: 38px;
}
.border.radius-39 {
  border-radius: 39px;
}
.border.radius-t-39 {
  border-top-left-radius: 39px;
  border-top-right-radius: 39px;
}
.border.radius-b-39 {
  border-bottom-left-radius: 39px;
  border-bottom-right-radius: 39px;
}
.border.radius-l-39 {
  border-top-left-radius: 39px;
  border-bottom-left-radius: 39px;
}
.border.radius-r-39 {
  border-top-right-radius: 39px;
  border-bottom-right-radius: 39px;
}
.border.radius-40 {
  border-radius: 40px;
}
.border.radius-t-40 {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.border.radius-b-40 {
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.border.radius-l-40 {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
.border.radius-r-40 {
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}
.border.radius-41 {
  border-radius: 41px;
}
.border.radius-t-41 {
  border-top-left-radius: 41px;
  border-top-right-radius: 41px;
}
.border.radius-b-41 {
  border-bottom-left-radius: 41px;
  border-bottom-right-radius: 41px;
}
.border.radius-l-41 {
  border-top-left-radius: 41px;
  border-bottom-left-radius: 41px;
}
.border.radius-r-41 {
  border-top-right-radius: 41px;
  border-bottom-right-radius: 41px;
}
.border.radius-42 {
  border-radius: 42px;
}
.border.radius-t-42 {
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
}
.border.radius-b-42 {
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
}
.border.radius-l-42 {
  border-top-left-radius: 42px;
  border-bottom-left-radius: 42px;
}
.border.radius-r-42 {
  border-top-right-radius: 42px;
  border-bottom-right-radius: 42px;
}
.border.radius-43 {
  border-radius: 43px;
}
.border.radius-t-43 {
  border-top-left-radius: 43px;
  border-top-right-radius: 43px;
}
.border.radius-b-43 {
  border-bottom-left-radius: 43px;
  border-bottom-right-radius: 43px;
}
.border.radius-l-43 {
  border-top-left-radius: 43px;
  border-bottom-left-radius: 43px;
}
.border.radius-r-43 {
  border-top-right-radius: 43px;
  border-bottom-right-radius: 43px;
}
.border.radius-44 {
  border-radius: 44px;
}
.border.radius-t-44 {
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
}
.border.radius-b-44 {
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
}
.border.radius-l-44 {
  border-top-left-radius: 44px;
  border-bottom-left-radius: 44px;
}
.border.radius-r-44 {
  border-top-right-radius: 44px;
  border-bottom-right-radius: 44px;
}
.border.radius-45 {
  border-radius: 45px;
}
.border.radius-t-45 {
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
}
.border.radius-b-45 {
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
}
.border.radius-l-45 {
  border-top-left-radius: 45px;
  border-bottom-left-radius: 45px;
}
.border.radius-r-45 {
  border-top-right-radius: 45px;
  border-bottom-right-radius: 45px;
}
.border.radius-46 {
  border-radius: 46px;
}
.border.radius-t-46 {
  border-top-left-radius: 46px;
  border-top-right-radius: 46px;
}
.border.radius-b-46 {
  border-bottom-left-radius: 46px;
  border-bottom-right-radius: 46px;
}
.border.radius-l-46 {
  border-top-left-radius: 46px;
  border-bottom-left-radius: 46px;
}
.border.radius-r-46 {
  border-top-right-radius: 46px;
  border-bottom-right-radius: 46px;
}
.border.radius-47 {
  border-radius: 47px;
}
.border.radius-t-47 {
  border-top-left-radius: 47px;
  border-top-right-radius: 47px;
}
.border.radius-b-47 {
  border-bottom-left-radius: 47px;
  border-bottom-right-radius: 47px;
}
.border.radius-l-47 {
  border-top-left-radius: 47px;
  border-bottom-left-radius: 47px;
}
.border.radius-r-47 {
  border-top-right-radius: 47px;
  border-bottom-right-radius: 47px;
}
.border.radius-48 {
  border-radius: 48px;
}
.border.radius-t-48 {
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
}
.border.radius-b-48 {
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
}
.border.radius-l-48 {
  border-top-left-radius: 48px;
  border-bottom-left-radius: 48px;
}
.border.radius-r-48 {
  border-top-right-radius: 48px;
  border-bottom-right-radius: 48px;
}
.border.radius-49 {
  border-radius: 49px;
}
.border.radius-t-49 {
  border-top-left-radius: 49px;
  border-top-right-radius: 49px;
}
.border.radius-b-49 {
  border-bottom-left-radius: 49px;
  border-bottom-right-radius: 49px;
}
.border.radius-l-49 {
  border-top-left-radius: 49px;
  border-bottom-left-radius: 49px;
}
.border.radius-r-49 {
  border-top-right-radius: 49px;
  border-bottom-right-radius: 49px;
}
.border.radius-50 {
  border-radius: 50px;
}
.border.radius-t-50 {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
.border.radius-b-50 {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.border.radius-l-50 {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.border.radius-r-50 {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.border.radius-51 {
  border-radius: 51px;
}
.border.radius-t-51 {
  border-top-left-radius: 51px;
  border-top-right-radius: 51px;
}
.border.radius-b-51 {
  border-bottom-left-radius: 51px;
  border-bottom-right-radius: 51px;
}
.border.radius-l-51 {
  border-top-left-radius: 51px;
  border-bottom-left-radius: 51px;
}
.border.radius-r-51 {
  border-top-right-radius: 51px;
  border-bottom-right-radius: 51px;
}
.border.radius-52 {
  border-radius: 52px;
}
.border.radius-t-52 {
  border-top-left-radius: 52px;
  border-top-right-radius: 52px;
}
.border.radius-b-52 {
  border-bottom-left-radius: 52px;
  border-bottom-right-radius: 52px;
}
.border.radius-l-52 {
  border-top-left-radius: 52px;
  border-bottom-left-radius: 52px;
}
.border.radius-r-52 {
  border-top-right-radius: 52px;
  border-bottom-right-radius: 52px;
}
.border.radius-53 {
  border-radius: 53px;
}
.border.radius-t-53 {
  border-top-left-radius: 53px;
  border-top-right-radius: 53px;
}
.border.radius-b-53 {
  border-bottom-left-radius: 53px;
  border-bottom-right-radius: 53px;
}
.border.radius-l-53 {
  border-top-left-radius: 53px;
  border-bottom-left-radius: 53px;
}
.border.radius-r-53 {
  border-top-right-radius: 53px;
  border-bottom-right-radius: 53px;
}
.border.radius-54 {
  border-radius: 54px;
}
.border.radius-t-54 {
  border-top-left-radius: 54px;
  border-top-right-radius: 54px;
}
.border.radius-b-54 {
  border-bottom-left-radius: 54px;
  border-bottom-right-radius: 54px;
}
.border.radius-l-54 {
  border-top-left-radius: 54px;
  border-bottom-left-radius: 54px;
}
.border.radius-r-54 {
  border-top-right-radius: 54px;
  border-bottom-right-radius: 54px;
}
.border.radius-55 {
  border-radius: 55px;
}
.border.radius-t-55 {
  border-top-left-radius: 55px;
  border-top-right-radius: 55px;
}
.border.radius-b-55 {
  border-bottom-left-radius: 55px;
  border-bottom-right-radius: 55px;
}
.border.radius-l-55 {
  border-top-left-radius: 55px;
  border-bottom-left-radius: 55px;
}
.border.radius-r-55 {
  border-top-right-radius: 55px;
  border-bottom-right-radius: 55px;
}
.border.radius-56 {
  border-radius: 56px;
}
.border.radius-t-56 {
  border-top-left-radius: 56px;
  border-top-right-radius: 56px;
}
.border.radius-b-56 {
  border-bottom-left-radius: 56px;
  border-bottom-right-radius: 56px;
}
.border.radius-l-56 {
  border-top-left-radius: 56px;
  border-bottom-left-radius: 56px;
}
.border.radius-r-56 {
  border-top-right-radius: 56px;
  border-bottom-right-radius: 56px;
}
.border.radius-57 {
  border-radius: 57px;
}
.border.radius-t-57 {
  border-top-left-radius: 57px;
  border-top-right-radius: 57px;
}
.border.radius-b-57 {
  border-bottom-left-radius: 57px;
  border-bottom-right-radius: 57px;
}
.border.radius-l-57 {
  border-top-left-radius: 57px;
  border-bottom-left-radius: 57px;
}
.border.radius-r-57 {
  border-top-right-radius: 57px;
  border-bottom-right-radius: 57px;
}
.border.radius-58 {
  border-radius: 58px;
}
.border.radius-t-58 {
  border-top-left-radius: 58px;
  border-top-right-radius: 58px;
}
.border.radius-b-58 {
  border-bottom-left-radius: 58px;
  border-bottom-right-radius: 58px;
}
.border.radius-l-58 {
  border-top-left-radius: 58px;
  border-bottom-left-radius: 58px;
}
.border.radius-r-58 {
  border-top-right-radius: 58px;
  border-bottom-right-radius: 58px;
}
.border.radius-59 {
  border-radius: 59px;
}
.border.radius-t-59 {
  border-top-left-radius: 59px;
  border-top-right-radius: 59px;
}
.border.radius-b-59 {
  border-bottom-left-radius: 59px;
  border-bottom-right-radius: 59px;
}
.border.radius-l-59 {
  border-top-left-radius: 59px;
  border-bottom-left-radius: 59px;
}
.border.radius-r-59 {
  border-top-right-radius: 59px;
  border-bottom-right-radius: 59px;
}
.border.radius-60 {
  border-radius: 60px;
}
.border.radius-t-60 {
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}
.border.radius-b-60 {
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}
.border.radius-l-60 {
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
}
.border.radius-r-60 {
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
}
.border.radius-61 {
  border-radius: 61px;
}
.border.radius-t-61 {
  border-top-left-radius: 61px;
  border-top-right-radius: 61px;
}
.border.radius-b-61 {
  border-bottom-left-radius: 61px;
  border-bottom-right-radius: 61px;
}
.border.radius-l-61 {
  border-top-left-radius: 61px;
  border-bottom-left-radius: 61px;
}
.border.radius-r-61 {
  border-top-right-radius: 61px;
  border-bottom-right-radius: 61px;
}
.border.radius-62 {
  border-radius: 62px;
}
.border.radius-t-62 {
  border-top-left-radius: 62px;
  border-top-right-radius: 62px;
}
.border.radius-b-62 {
  border-bottom-left-radius: 62px;
  border-bottom-right-radius: 62px;
}
.border.radius-l-62 {
  border-top-left-radius: 62px;
  border-bottom-left-radius: 62px;
}
.border.radius-r-62 {
  border-top-right-radius: 62px;
  border-bottom-right-radius: 62px;
}
.border.radius-63 {
  border-radius: 63px;
}
.border.radius-t-63 {
  border-top-left-radius: 63px;
  border-top-right-radius: 63px;
}
.border.radius-b-63 {
  border-bottom-left-radius: 63px;
  border-bottom-right-radius: 63px;
}
.border.radius-l-63 {
  border-top-left-radius: 63px;
  border-bottom-left-radius: 63px;
}
.border.radius-r-63 {
  border-top-right-radius: 63px;
  border-bottom-right-radius: 63px;
}
.border.radius-64 {
  border-radius: 64px;
}
.border.radius-t-64 {
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
}
.border.radius-b-64 {
  border-bottom-left-radius: 64px;
  border-bottom-right-radius: 64px;
}
.border.radius-l-64 {
  border-top-left-radius: 64px;
  border-bottom-left-radius: 64px;
}
.border.radius-r-64 {
  border-top-right-radius: 64px;
  border-bottom-right-radius: 64px;
}
.border.radius-65 {
  border-radius: 65px;
}
.border.radius-t-65 {
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
}
.border.radius-b-65 {
  border-bottom-left-radius: 65px;
  border-bottom-right-radius: 65px;
}
.border.radius-l-65 {
  border-top-left-radius: 65px;
  border-bottom-left-radius: 65px;
}
.border.radius-r-65 {
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
}
.border.radius-66 {
  border-radius: 66px;
}
.border.radius-t-66 {
  border-top-left-radius: 66px;
  border-top-right-radius: 66px;
}
.border.radius-b-66 {
  border-bottom-left-radius: 66px;
  border-bottom-right-radius: 66px;
}
.border.radius-l-66 {
  border-top-left-radius: 66px;
  border-bottom-left-radius: 66px;
}
.border.radius-r-66 {
  border-top-right-radius: 66px;
  border-bottom-right-radius: 66px;
}
.border.radius-67 {
  border-radius: 67px;
}
.border.radius-t-67 {
  border-top-left-radius: 67px;
  border-top-right-radius: 67px;
}
.border.radius-b-67 {
  border-bottom-left-radius: 67px;
  border-bottom-right-radius: 67px;
}
.border.radius-l-67 {
  border-top-left-radius: 67px;
  border-bottom-left-radius: 67px;
}
.border.radius-r-67 {
  border-top-right-radius: 67px;
  border-bottom-right-radius: 67px;
}
.border.radius-68 {
  border-radius: 68px;
}
.border.radius-t-68 {
  border-top-left-radius: 68px;
  border-top-right-radius: 68px;
}
.border.radius-b-68 {
  border-bottom-left-radius: 68px;
  border-bottom-right-radius: 68px;
}
.border.radius-l-68 {
  border-top-left-radius: 68px;
  border-bottom-left-radius: 68px;
}
.border.radius-r-68 {
  border-top-right-radius: 68px;
  border-bottom-right-radius: 68px;
}
.border.radius-69 {
  border-radius: 69px;
}
.border.radius-t-69 {
  border-top-left-radius: 69px;
  border-top-right-radius: 69px;
}
.border.radius-b-69 {
  border-bottom-left-radius: 69px;
  border-bottom-right-radius: 69px;
}
.border.radius-l-69 {
  border-top-left-radius: 69px;
  border-bottom-left-radius: 69px;
}
.border.radius-r-69 {
  border-top-right-radius: 69px;
  border-bottom-right-radius: 69px;
}
.border.radius-70 {
  border-radius: 70px;
}
.border.radius-t-70 {
  border-top-left-radius: 70px;
  border-top-right-radius: 70px;
}
.border.radius-b-70 {
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
}
.border.radius-l-70 {
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
}
.border.radius-r-70 {
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
}
.border.radius-71 {
  border-radius: 71px;
}
.border.radius-t-71 {
  border-top-left-radius: 71px;
  border-top-right-radius: 71px;
}
.border.radius-b-71 {
  border-bottom-left-radius: 71px;
  border-bottom-right-radius: 71px;
}
.border.radius-l-71 {
  border-top-left-radius: 71px;
  border-bottom-left-radius: 71px;
}
.border.radius-r-71 {
  border-top-right-radius: 71px;
  border-bottom-right-radius: 71px;
}
.border.radius-72 {
  border-radius: 72px;
}
.border.radius-t-72 {
  border-top-left-radius: 72px;
  border-top-right-radius: 72px;
}
.border.radius-b-72 {
  border-bottom-left-radius: 72px;
  border-bottom-right-radius: 72px;
}
.border.radius-l-72 {
  border-top-left-radius: 72px;
  border-bottom-left-radius: 72px;
}
.border.radius-r-72 {
  border-top-right-radius: 72px;
  border-bottom-right-radius: 72px;
}
.border.radius-73 {
  border-radius: 73px;
}
.border.radius-t-73 {
  border-top-left-radius: 73px;
  border-top-right-radius: 73px;
}
.border.radius-b-73 {
  border-bottom-left-radius: 73px;
  border-bottom-right-radius: 73px;
}
.border.radius-l-73 {
  border-top-left-radius: 73px;
  border-bottom-left-radius: 73px;
}
.border.radius-r-73 {
  border-top-right-radius: 73px;
  border-bottom-right-radius: 73px;
}
.border.radius-74 {
  border-radius: 74px;
}
.border.radius-t-74 {
  border-top-left-radius: 74px;
  border-top-right-radius: 74px;
}
.border.radius-b-74 {
  border-bottom-left-radius: 74px;
  border-bottom-right-radius: 74px;
}
.border.radius-l-74 {
  border-top-left-radius: 74px;
  border-bottom-left-radius: 74px;
}
.border.radius-r-74 {
  border-top-right-radius: 74px;
  border-bottom-right-radius: 74px;
}
.border.radius-75 {
  border-radius: 75px;
}
.border.radius-t-75 {
  border-top-left-radius: 75px;
  border-top-right-radius: 75px;
}
.border.radius-b-75 {
  border-bottom-left-radius: 75px;
  border-bottom-right-radius: 75px;
}
.border.radius-l-75 {
  border-top-left-radius: 75px;
  border-bottom-left-radius: 75px;
}
.border.radius-r-75 {
  border-top-right-radius: 75px;
  border-bottom-right-radius: 75px;
}
.border.radius-76 {
  border-radius: 76px;
}
.border.radius-t-76 {
  border-top-left-radius: 76px;
  border-top-right-radius: 76px;
}
.border.radius-b-76 {
  border-bottom-left-radius: 76px;
  border-bottom-right-radius: 76px;
}
.border.radius-l-76 {
  border-top-left-radius: 76px;
  border-bottom-left-radius: 76px;
}
.border.radius-r-76 {
  border-top-right-radius: 76px;
  border-bottom-right-radius: 76px;
}
.border.radius-77 {
  border-radius: 77px;
}
.border.radius-t-77 {
  border-top-left-radius: 77px;
  border-top-right-radius: 77px;
}
.border.radius-b-77 {
  border-bottom-left-radius: 77px;
  border-bottom-right-radius: 77px;
}
.border.radius-l-77 {
  border-top-left-radius: 77px;
  border-bottom-left-radius: 77px;
}
.border.radius-r-77 {
  border-top-right-radius: 77px;
  border-bottom-right-radius: 77px;
}
.border.radius-78 {
  border-radius: 78px;
}
.border.radius-t-78 {
  border-top-left-radius: 78px;
  border-top-right-radius: 78px;
}
.border.radius-b-78 {
  border-bottom-left-radius: 78px;
  border-bottom-right-radius: 78px;
}
.border.radius-l-78 {
  border-top-left-radius: 78px;
  border-bottom-left-radius: 78px;
}
.border.radius-r-78 {
  border-top-right-radius: 78px;
  border-bottom-right-radius: 78px;
}
.border.radius-79 {
  border-radius: 79px;
}
.border.radius-t-79 {
  border-top-left-radius: 79px;
  border-top-right-radius: 79px;
}
.border.radius-b-79 {
  border-bottom-left-radius: 79px;
  border-bottom-right-radius: 79px;
}
.border.radius-l-79 {
  border-top-left-radius: 79px;
  border-bottom-left-radius: 79px;
}
.border.radius-r-79 {
  border-top-right-radius: 79px;
  border-bottom-right-radius: 79px;
}
.border.radius-80 {
  border-radius: 80px;
}
.border.radius-t-80 {
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}
.border.radius-b-80 {
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}
.border.radius-l-80 {
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
}
.border.radius-r-80 {
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
}
.border.radius-81 {
  border-radius: 81px;
}
.border.radius-t-81 {
  border-top-left-radius: 81px;
  border-top-right-radius: 81px;
}
.border.radius-b-81 {
  border-bottom-left-radius: 81px;
  border-bottom-right-radius: 81px;
}
.border.radius-l-81 {
  border-top-left-radius: 81px;
  border-bottom-left-radius: 81px;
}
.border.radius-r-81 {
  border-top-right-radius: 81px;
  border-bottom-right-radius: 81px;
}
.border.radius-82 {
  border-radius: 82px;
}
.border.radius-t-82 {
  border-top-left-radius: 82px;
  border-top-right-radius: 82px;
}
.border.radius-b-82 {
  border-bottom-left-radius: 82px;
  border-bottom-right-radius: 82px;
}
.border.radius-l-82 {
  border-top-left-radius: 82px;
  border-bottom-left-radius: 82px;
}
.border.radius-r-82 {
  border-top-right-radius: 82px;
  border-bottom-right-radius: 82px;
}
.border.radius-83 {
  border-radius: 83px;
}
.border.radius-t-83 {
  border-top-left-radius: 83px;
  border-top-right-radius: 83px;
}
.border.radius-b-83 {
  border-bottom-left-radius: 83px;
  border-bottom-right-radius: 83px;
}
.border.radius-l-83 {
  border-top-left-radius: 83px;
  border-bottom-left-radius: 83px;
}
.border.radius-r-83 {
  border-top-right-radius: 83px;
  border-bottom-right-radius: 83px;
}
.border.radius-84 {
  border-radius: 84px;
}
.border.radius-t-84 {
  border-top-left-radius: 84px;
  border-top-right-radius: 84px;
}
.border.radius-b-84 {
  border-bottom-left-radius: 84px;
  border-bottom-right-radius: 84px;
}
.border.radius-l-84 {
  border-top-left-radius: 84px;
  border-bottom-left-radius: 84px;
}
.border.radius-r-84 {
  border-top-right-radius: 84px;
  border-bottom-right-radius: 84px;
}
.border.radius-85 {
  border-radius: 85px;
}
.border.radius-t-85 {
  border-top-left-radius: 85px;
  border-top-right-radius: 85px;
}
.border.radius-b-85 {
  border-bottom-left-radius: 85px;
  border-bottom-right-radius: 85px;
}
.border.radius-l-85 {
  border-top-left-radius: 85px;
  border-bottom-left-radius: 85px;
}
.border.radius-r-85 {
  border-top-right-radius: 85px;
  border-bottom-right-radius: 85px;
}
.border.radius-86 {
  border-radius: 86px;
}
.border.radius-t-86 {
  border-top-left-radius: 86px;
  border-top-right-radius: 86px;
}
.border.radius-b-86 {
  border-bottom-left-radius: 86px;
  border-bottom-right-radius: 86px;
}
.border.radius-l-86 {
  border-top-left-radius: 86px;
  border-bottom-left-radius: 86px;
}
.border.radius-r-86 {
  border-top-right-radius: 86px;
  border-bottom-right-radius: 86px;
}
.border.radius-87 {
  border-radius: 87px;
}
.border.radius-t-87 {
  border-top-left-radius: 87px;
  border-top-right-radius: 87px;
}
.border.radius-b-87 {
  border-bottom-left-radius: 87px;
  border-bottom-right-radius: 87px;
}
.border.radius-l-87 {
  border-top-left-radius: 87px;
  border-bottom-left-radius: 87px;
}
.border.radius-r-87 {
  border-top-right-radius: 87px;
  border-bottom-right-radius: 87px;
}
.border.radius-88 {
  border-radius: 88px;
}
.border.radius-t-88 {
  border-top-left-radius: 88px;
  border-top-right-radius: 88px;
}
.border.radius-b-88 {
  border-bottom-left-radius: 88px;
  border-bottom-right-radius: 88px;
}
.border.radius-l-88 {
  border-top-left-radius: 88px;
  border-bottom-left-radius: 88px;
}
.border.radius-r-88 {
  border-top-right-radius: 88px;
  border-bottom-right-radius: 88px;
}
.border.radius-89 {
  border-radius: 89px;
}
.border.radius-t-89 {
  border-top-left-radius: 89px;
  border-top-right-radius: 89px;
}
.border.radius-b-89 {
  border-bottom-left-radius: 89px;
  border-bottom-right-radius: 89px;
}
.border.radius-l-89 {
  border-top-left-radius: 89px;
  border-bottom-left-radius: 89px;
}
.border.radius-r-89 {
  border-top-right-radius: 89px;
  border-bottom-right-radius: 89px;
}
.border.radius-90 {
  border-radius: 90px;
}
.border.radius-t-90 {
  border-top-left-radius: 90px;
  border-top-right-radius: 90px;
}
.border.radius-b-90 {
  border-bottom-left-radius: 90px;
  border-bottom-right-radius: 90px;
}
.border.radius-l-90 {
  border-top-left-radius: 90px;
  border-bottom-left-radius: 90px;
}
.border.radius-r-90 {
  border-top-right-radius: 90px;
  border-bottom-right-radius: 90px;
}
.border.radius-91 {
  border-radius: 91px;
}
.border.radius-t-91 {
  border-top-left-radius: 91px;
  border-top-right-radius: 91px;
}
.border.radius-b-91 {
  border-bottom-left-radius: 91px;
  border-bottom-right-radius: 91px;
}
.border.radius-l-91 {
  border-top-left-radius: 91px;
  border-bottom-left-radius: 91px;
}
.border.radius-r-91 {
  border-top-right-radius: 91px;
  border-bottom-right-radius: 91px;
}
.border.radius-92 {
  border-radius: 92px;
}
.border.radius-t-92 {
  border-top-left-radius: 92px;
  border-top-right-radius: 92px;
}
.border.radius-b-92 {
  border-bottom-left-radius: 92px;
  border-bottom-right-radius: 92px;
}
.border.radius-l-92 {
  border-top-left-radius: 92px;
  border-bottom-left-radius: 92px;
}
.border.radius-r-92 {
  border-top-right-radius: 92px;
  border-bottom-right-radius: 92px;
}
.border.radius-93 {
  border-radius: 93px;
}
.border.radius-t-93 {
  border-top-left-radius: 93px;
  border-top-right-radius: 93px;
}
.border.radius-b-93 {
  border-bottom-left-radius: 93px;
  border-bottom-right-radius: 93px;
}
.border.radius-l-93 {
  border-top-left-radius: 93px;
  border-bottom-left-radius: 93px;
}
.border.radius-r-93 {
  border-top-right-radius: 93px;
  border-bottom-right-radius: 93px;
}
.border.radius-94 {
  border-radius: 94px;
}
.border.radius-t-94 {
  border-top-left-radius: 94px;
  border-top-right-radius: 94px;
}
.border.radius-b-94 {
  border-bottom-left-radius: 94px;
  border-bottom-right-radius: 94px;
}
.border.radius-l-94 {
  border-top-left-radius: 94px;
  border-bottom-left-radius: 94px;
}
.border.radius-r-94 {
  border-top-right-radius: 94px;
  border-bottom-right-radius: 94px;
}
.border.radius-95 {
  border-radius: 95px;
}
.border.radius-t-95 {
  border-top-left-radius: 95px;
  border-top-right-radius: 95px;
}
.border.radius-b-95 {
  border-bottom-left-radius: 95px;
  border-bottom-right-radius: 95px;
}
.border.radius-l-95 {
  border-top-left-radius: 95px;
  border-bottom-left-radius: 95px;
}
.border.radius-r-95 {
  border-top-right-radius: 95px;
  border-bottom-right-radius: 95px;
}
.border.radius-96 {
  border-radius: 96px;
}
.border.radius-t-96 {
  border-top-left-radius: 96px;
  border-top-right-radius: 96px;
}
.border.radius-b-96 {
  border-bottom-left-radius: 96px;
  border-bottom-right-radius: 96px;
}
.border.radius-l-96 {
  border-top-left-radius: 96px;
  border-bottom-left-radius: 96px;
}
.border.radius-r-96 {
  border-top-right-radius: 96px;
  border-bottom-right-radius: 96px;
}
.border.radius-97 {
  border-radius: 97px;
}
.border.radius-t-97 {
  border-top-left-radius: 97px;
  border-top-right-radius: 97px;
}
.border.radius-b-97 {
  border-bottom-left-radius: 97px;
  border-bottom-right-radius: 97px;
}
.border.radius-l-97 {
  border-top-left-radius: 97px;
  border-bottom-left-radius: 97px;
}
.border.radius-r-97 {
  border-top-right-radius: 97px;
  border-bottom-right-radius: 97px;
}
.border.radius-98 {
  border-radius: 98px;
}
.border.radius-t-98 {
  border-top-left-radius: 98px;
  border-top-right-radius: 98px;
}
.border.radius-b-98 {
  border-bottom-left-radius: 98px;
  border-bottom-right-radius: 98px;
}
.border.radius-l-98 {
  border-top-left-radius: 98px;
  border-bottom-left-radius: 98px;
}
.border.radius-r-98 {
  border-top-right-radius: 98px;
  border-bottom-right-radius: 98px;
}
.border.radius-99 {
  border-radius: 99px;
}
.border.radius-t-99 {
  border-top-left-radius: 99px;
  border-top-right-radius: 99px;
}
.border.radius-b-99 {
  border-bottom-left-radius: 99px;
  border-bottom-right-radius: 99px;
}
.border.radius-l-99 {
  border-top-left-radius: 99px;
  border-bottom-left-radius: 99px;
}
.border.radius-r-99 {
  border-top-right-radius: 99px;
  border-bottom-right-radius: 99px;
}
.border.radius-100 {
  border-radius: 100px;
}
.border.radius-t-100 {
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}
.border.radius-b-100 {
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.border.radius-l-100 {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.border.radius-r-100 {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

/* 뱃지 */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 13px;
}
.badge.primary {
  background-color: #305bc4;
  color: #fff;
  border: none;
}

/* 유틸  */
.relative {
  position: relative;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

/* 클릭 포인터 */
@keyframes sonar {
  0% {
    opacity: 0.9;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(3.5);
  }
}
.pointer-wrapper {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  vertical-align: middle;
}
.pointer-wrapper.sm {
  width: 28px;
  height: 28px;
}
.pointer-wrapper .pointer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pointer {
  position: absolute;
  right: 10%;
  top: calc(50% - 12px);
  z-index: 150;
  /* sm: 8px */
  /* is-stop: 애니메이션 정지 상태 */
}
.pointer, .pointer > span, .pointer::before, .pointer::after {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #e8192c;
}
.pointer > span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 200%;
}
.pointer::before, .pointer::after {
  content: "";
  left: 0;
  top: 0;
  animation: sonar 1.8s infinite;
}
.pointer::before {
  animation-delay: 0.3s;
}
.pointer::after {
  z-index: 2;
  animation-delay: 0.9s;
}
.pointer.sm, .pointer.sm > span, .pointer.sm::before, .pointer.sm::after {
  width: 8px;
  height: 8px;
}
.pointer.is-stop::before, .pointer.is-stop::after {
  animation-play-state: paused;
}
.pointer.is-stop::before {
  opacity: 0.45;
  transform: scale(2);
}
.pointer.is-stop::after {
  opacity: 0.12;
  transform: scale(3);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 아이콘 */
.ico {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background-size: 24px;
}
.ico.x12 {
  width: 12px;
  height: 12px;
  background-size: 12px;
}
.ico.x16 {
  width: 16px;
  height: 16px;
  background-size: 16px;
}
.ico.x20 {
  width: 20px;
  height: 20px;
  background-size: 20px;
}
.ico.x24 {
  width: 24px;
  height: 24px;
  background-size: 24px;
}
.ico.x28 {
  width: 28px;
  height: 28px;
  background-size: 28px;
}
.ico.x32 {
  width: 32px;
  height: 32px;
  background-size: 32px;
}
.ico.x36 {
  width: 36px;
  height: 36px;
  background-size: 36px;
}
.ico.x40 {
  width: 40px;
  height: 40px;
  background-size: 40px;
}
.ico.logo {
  width: 114px;
  height: 23px;
  background: url("../img/logo.svg") no-repeat center center/contain;
  vertical-align: text-bottom;
}
.ico.logo.lg {
  width: 159px;
  height: 32px;
  vertical-align: text-bottom;
}
.ico.info {
  background: url("../img/info.svg") no-repeat center center/contain;
}
.ico.nhis-logo {
  width: 132px;
  height: 45px;
  background: url("../img/nhis-logo.svg") no-repeat center center/contain;
}
.ico.android {
  background: url("../img/android.svg") no-repeat center center/contain;
}
.ico.apple {
  background: url("../img/apple.svg") no-repeat center center/contain;
}

/* 모달 */
.krds-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  overflow-y: auto;
  transition: background-color 0.25s ease;
  /* guide-modal 전용 dim (그라데이션 배경) */
  /* 위치 변형 */
  /* 배경 클릭 레이어 */
  /* 다이얼로그 래퍼 */
  /* 콘텐츠 박스 */
  /* 헤더 */
  /* 본문 */
  /* 버튼 영역 */
  /* 닫기(X) 버튼 */
  /* ── 풀스크린 (data-type="full") ── */
  /* ── 바텀시트 (data-type="bottom-sheet") ── */
  /* ── 애니메이션 ── */
  /* fade */
  /* slide-down */
  /* slide-up */
  /* slide-left */
  /* slide-right */
  /* scale */
}
.krds-modal.shown {
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
}
.krds-modal.guide-modal {
  transition: background 0.25s ease;
}
.krds-modal.guide-modal.shown {
  background: linear-gradient(180deg, #C8E3FF 0%, #FFFFFF 56.25%, #F1F8FF 62.5%);
}
.krds-modal.modal-top {
  align-items: flex-start;
}
.krds-modal.modal-center {
  align-items: center;
}
.krds-modal.modal-bottom {
  align-items: flex-end;
}
.krds-modal .modal-back {
  position: fixed;
  inset: 0;
  z-index: -1;
  cursor: default;
}
.krds-modal .modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}
.krds-modal .modal-dialog.modal-sm {
  max-width: 320px;
}
.krds-modal .modal-dialog.modal-md {
  max-width: 500px;
}
.krds-modal .modal-dialog.modal-lg {
  max-width: 720px;
}
.krds-modal .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 16px 16px 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.krds-modal .modal-content.clear-modal {
  background-color: transparent;
}
.krds-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #305BC4;
}
.krds-modal .modal-header .modal-title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 17px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}
.krds-modal .modal-conts {
  flex: 1 1 auto;
  padding: 16px 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 60vh;
}
.krds-modal .modal-conts .conts-area {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  word-break: keep-all;
}
.krds-modal .modal-btn {
  display: flex;
  gap: 8px;
  padding: 0 20px 20px;
  /* KRDS 버튼 변형 */
}
.krds-modal .modal-btn .btn, .krds-modal .modal-btn .krds-btn {
  flex: 1;
  height: 48px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.krds-modal .modal-btn .btn:active, .krds-modal .modal-btn .krds-btn:active {
  transform: scale(0.97);
}
.krds-modal .modal-btn .btn-primary-light, .krds-modal .modal-btn .btn {
  background-color: #305bc4;
  color: #fff;
}
.krds-modal .modal-btn .btn-primary-light:hover, .krds-modal .modal-btn .btn:hover {
  background-color: #1e45a8;
}
.krds-modal .modal-btn .btn-primary-white {
  background-color: #f0f4ff;
  color: #305bc4;
}
.krds-modal .modal-btn .btn-primary-white:hover {
  background-color: #dce6ff;
}
.krds-modal .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  background: url("../img/modal-close.svg") no-repeat center center/24px 24px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}
.krds-modal .btn-close:hover {
  background-color: #f2f2f2;
}
.krds-modal[data-type=full] {
  padding: 0;
}
.krds-modal[data-type=full] .modal-dialog {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
}
.krds-modal[data-type=full] .modal-content {
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}
.krds-modal[data-type=full] .modal-conts {
  max-height: none;
  flex: 1 1 auto;
}
.krds-modal[data-type=bottom-sheet] {
  padding: 14px 0 0 0;
  align-items: flex-end;
}
.krds-modal[data-type=bottom-sheet] .modal-dialog {
  width: 100%;
  max-width: 100%;
  margin: 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.krds-modal[data-type=bottom-sheet].in .modal-dialog {
  transform: translateY(0);
}
.krds-modal[data-type=bottom-sheet] .modal-content {
  border-radius: 20px 20px 0 0;
  height:100%;
}
.krds-modal[data-type=bottom-sheet] .modal-conts {
  max-height: calc(100vh - 14px - 140px);
}
.krds-modal[data-type=bottom-sheet] .modal-conts.full {
  max-height: 100%;
}
.krds-modal[data-type=bottom-sheet] .modal-conts.full .conts-area {
  height: 100%;
}
.krds-modal.fade .modal-dialog {
  opacity: 0;
}
.krds-modal.fade.in .modal-dialog {
  opacity: 1;
}
.krds-modal.slide-down .modal-dialog {
  opacity: 0;
  transform: translateY(-40px);
}
.krds-modal.slide-down.in .modal-dialog {
  opacity: 1;
  transform: translateY(0);
}
.krds-modal.slide-up .modal-dialog {
  opacity: 0;
  transform: translateY(40px);
}
.krds-modal.slide-up.in .modal-dialog {
  opacity: 1;
  transform: translateY(0);
}
.krds-modal.slide-left .modal-dialog {
  opacity: 0;
  transform: translateX(-60px);
}
.krds-modal.slide-left.in .modal-dialog {
  opacity: 1;
  transform: translateX(0);
}
.krds-modal.slide-right .modal-dialog {
  opacity: 0;
  transform: translateX(60px);
}
.krds-modal.slide-right.in .modal-dialog {
  opacity: 1;
  transform: translateX(0);
}
.krds-modal.scale .modal-dialog {
  opacity: 0;
  transform: scale(0.85);
}
.krds-modal.scale.in .modal-dialog {
  opacity: 1;
  transform: scale(1);
}

body:has(.krds-modal.shown) {
  overflow: hidden;
}

/* 헤더 */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 16px;
  background-color: #fff;
}

/* 메인 */
.main {
  height: calc(100vh - 60px);
}
.main .main-img {
  position: relative;
}
.main .main-img > img {
  position: absolute;
  top: -124px;
  left: 50%;
  transform: translateX(-50%);
  width: 351px;
  height: 179px;
  object-fit: contain;
}
