@charset "utf-8";
@import url('https://cdn.jsdelivr.net/gh/wanteddev/wanted-sans@v1.0.1/packages/wanted-sans/fonts/webfonts/variable/split/WantedSansVariable.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/*
** html tag reset
*/
* {
    margin: 0;
    padding: 0;
    font-family: "Wanted Sans Variable", sans-serif;
    line-height: 1;
    vertical-align: middle;
    background: transparent;
    max-height: 99999px;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    touch-action: manipulation;
    box-sizing: border-box;
}
html, body {
    margin: 0;
    height: 100%;
}
html.hidden {
    overflow: hidden;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-thumb {
    background-color: #ABADB5;
    border-radius: 32px;
    background-clip: padding-box;
}
::-webkit-scrollbar-track {
    background-color: #CCCCCC;
    box-shadow: inset 0px 0px 5px white;
}

.alertWrap {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.alertWrap .alertBg {
    position: fixed;
    top: 0;
    background: transparent;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 0 0 0;
    max-height: 100%;
    pointer-events: none;
}
.alertWrap.show {
    visibility: visible;
    opacity: 1;
    /*display: inline-flex;*/
}
.alertWrap.show > div {
    /*transform: translateY(0);*/
    z-index: 2;
}
.alertWrap.show > div.alertBg {
    z-index: 1;
}
.alertWrap .hide {
    display: none !important;
}
.alertWrap .alertBody {
    width: 320px;
    display: inline-flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 16px;
    border: 1px solid #E9ECEF;
    background: #FFF;
    box-shadow: 0 10px 15px 0 rgba(108, 92, 231, 0.10);
}
.alertWrap .alertTitle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*gap: 4px;*/
}
.alertWrap .alertTitle > p {
    color: var(--Neutral-900, #212529);
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
}
.alertWrap .alertTitle > .alertClose {
    display: flex;
    width: 16px;
    height: 16px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    position: absolute;
    right: 16px;
    top: 16px;
}
.alertWrap .alertTitle > .alertClose:after {
    content: '';
    background: url(../images/i_close.svg) 50% / contain no-repeat;
    width: 16px;
    height: 16px;
}
.alertWrap .alertSubTitle {
    color: var(--Neutral-700, #495057);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    display: inline-block;
    margin-top: -20px;
}
/*.alertWrap .alertContent {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}
.alertWrap .alertContent .textWrap {
    color: var(--Neutral-700, #495057);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    margin: -10px 0 20px;
}
.alertWrap .alertContent .textWrap .textNormal {
    color: var(--Neutral-700, #495057);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}
.alertWrap .alertContent .textWrap .textLight {
    color: var(--Neutral-600, #868E96);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}*/
.alertWrap .alertBtn {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;/
}
.alertWrap .alertBtn.column {/*가로*/
    display: flex;
    gap: 8px;
    align-self: stretch;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
}
.alertWrap .alertBtn > div {
    height: 52px;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(108, 92, 231, 0.05);
    /* flex: 1 0 0; */
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
.alertWrap .alertBtn > div.cancelBtn {
    border: 1px solid var(--Neutral-200, #E9ECEF);
    background: #FFF;
    color: var(--Neutral-700, #495057);
}
.alertWrap .alertBtn > div.submitBtn {
    border: 1px solid var(--Neutral-200, #6C5CE7);
    background: var(--Primary-500, #6C5CE7);
    color: #FFF;
}