@charset "UTF-8";

@font-face {
    font-family: 'Malgun Gothic';
    src: url('./font/malgun.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Malgun Gothic';
    src: url('./font/malgunbd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Malgun Gothic';
    src: url('./font/malgunsl.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

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,
button,
input,
textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: 'Malgun Gothic', sans-serif;
    box-sizing: border-box !important;
    /* letter-spacing: -0.03em; */
    /* line-height: 1.72; */
}
iframe * {
    box-sizing: border-box;

}
a {
    color: inherit;
}
text {
    font-family: 'Malgun Gothic', sans-serif;
}
html {
    font-size: 1px;
    height: 100%;
}
body {
    font-size: 16rem;
    height: 100%;
    line-height: 1;
    min-width: 1536px;
    min-height: 700px;
    font-family: 'Malgun Gothic', sans-serif;
    font-variant-numeric: tabular-nums; /* 숫자를 고정폭으로 */
}


/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
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;
}
a {
    text-decoration: none;
}
button,
input,
textarea {
    outline: none;
    border: none;
    background-color: transparent;
}
button {
    cursor: pointer;
    color: inherit;
}

::-webkit-scrollbar {
    display : none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}



/* TOAST - APRO LIMS Design System */
/* 공통 스타일 */
.Toastify__toast{
    top : 30px !important;
    padding : 16px 16px 16px 20px !important;
    color : #FFFFFF !important; /* C_WHITE */
    border-radius: 8px !important; /* CSS.BORDER_RADIUS.MD */
    font-family: 'Malgun Gothic', sans-serif !important;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15) !important;
    min-height: 70px !important;
    display: flex !important;
    align-items: center !important;
}

/* 타입별 배경색 */
.Toastify__toast--info{
    background-color: #1353A0 !important; /* C_ACCENT_800 - 파랑 */
}
.Toastify__toast--success{
    background-color: #279B4A !important; /* C_SUCCESS_600 - 초록 */
}
.Toastify__toast--warning{
    background-color: #F79009 !important; /* C_WARNING_600 - 주황 */
}
.Toastify__toast--error{
    background-color: #E02D3C !important; /* C_DANGER_600 - 빨강 */
}

.Toastify__toast-container{
    width : 500px !important;
    padding : 0 !important;
}

.Toastify__toast-body{
    font-size : 12rem !important; /* TEXT.BODY_REGULAR.fontSize */
    font-weight: 600 !important; /* TEXT.BODY_REGULAR.fontWeight */
    line-height: 18rem !important; /* TEXT.BODY_REGULAR.lineHeight */
    padding : 0 12px 0 0 !important;
    color: #FFFFFF !important; /* C_WHITE */
    flex: 1 !important;
}

.Toastify__toast-body > div:nth-child(2){
    display: -webkit-box;
    -webkit-line-clamp: 2;  /* Limit to 2 lines */
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Toast 아이콘 커스터마이징 */
.Toastify__toast-icon{
    width: 24px !important;
    height: 24px !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
}

/* 타입별 아이콘 */
.Toastify__toast--info .Toastify__toast-icon::before{
    content: "ℹ" !important;
}
.Toastify__toast--success .Toastify__toast-icon::before{
    content: "✓" !important;
}
.Toastify__toast--warning .Toastify__toast-icon::before{
    content: "⚠" !important;
}
.Toastify__toast--error .Toastify__toast-icon::before{
    content: "✕" !important;
}

.Toastify__toast-icon svg{
    display: none !important;
}

/* 확인 버튼 */
.Toastify__close-button{
    width : 60px !important;
    height : 40px !important;
    flex-shrink: 0 !important;
    opacity : 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.Toastify__close-button::before{
    content : "확인";
    font-size : 12rem !important; /* TEXT.BODY_REGULAR.fontSize */
    font-weight: 800 !important; /* TEXT.BODY_BOLD.fontWeight */
    line-height: 18rem !important;
    color : #FFFFFF !important; /* C_WHITE */
    opacity: 1;
}

.Toastify__close-button:hover::before{
    opacity: 0.8 !important;
}

.Toastify__close-button svg{
    display: none !important;
}