@charset "utf-8";
/* 
=========================================================
* fileName     : kolas-popup.css
* project      : 2025-deltaindex-homepage
* author       : 빈다예
* description  : kolas 팝업창 전용 css
----------------------------------------------------------
* DATE          AUTHOR      DESCRIPTION
* 2025.01.14	빈다예		최초 생성
* 2025.06.26	이채연		작업정보 주석 추가
=========================================================
*/
.popupArea {
	position:absolute;
	min-width: 230px;
	z-index:999999;
	background:#ededeb;
	border:1px solid #000;
	text-align:center;
}
.popupArea .popupAreaContent {
	margin:0 auto;
}

body.popup-wrap{
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-family: 'SCoreDream';
    position: relative;
}
.popup-layer{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10000;
}
.popup{
    width: 58rem;
    height: 68.5rem;
    border-radius: 10px;
    box-shadow: 2px 2px 7px 0 rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 11000;
}

.popup_body{
    width: 100%;
    flex: 1 0 calc(100% - 7rem);
    /* max-height: calc(100% - 7rem); */
    height: 100%;
    border-radius: 10px 10px 0 0;
    background: url('../../../image/delta/app/main/kolasPopup/background_fullsize.png') no-repeat center / cover;
    padding: 4rem;
    position: relative;
}
/* 닫기 아이콘 버튼 */
.popup_close{
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
    cursor: pointer;
}
.popup-close-icon{
    display: block;
    width: 100%;
    min-width: auto;
    height: 100%;
    background: url('../../../image/delta/app/main/kolasPopup/close_icon.png') no-repeat center / 100%;
}
/* 주석 참고 : 이 위까지 닫기 아이콘 버튼 스타일 정의 */

.popup_kolas-logo{
    height: 12rem;
}
.kolas-logo{
    height: 100%;
    aspect-ratio: 103 / 59;
    background: url('../../../image/delta/app/main/kolasPopup/kolas_logo.png') no-repeat center / 100%;
    margin: 0 auto;
}
.popup_kolas-title{
    padding: 4.2rem 0;
    color: #fff;
    font-size: 3.6rem;
    font-weight: 600;
    text-align:center;
}
.kolas-title{
    width: fit-content;
    padding: 1rem 8rem;
    border: 4px solid #fff;
    border-radius: 6rem;
    margin: 0 auto;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 3.6rem;
}
.kolas-txt{
    margin-top: 1.6rem;
    font-weight: 600;
    font-size: 3.6rem;
}
.popup_main-txt{
    text-align: center;
    color: #2FC1FF;
    font-size: 2rem;
    font-weight: 500;
}
.popup_main-txt strong{
    color: #FFC659;
    font-weight: inherit;
    vertical-align: baseline;
    font-size: inherit;
}
.popup_sub-txt{
    padding: 2rem 0;
    font-family: 'Pretendard';
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 140%;
}
.popup_sub-txt strong{
    font-weight: 700;
    font-family: inherit;
    font-size: inherit;
    vertical-align: baseline;
}
.popup_delta-logo{
    padding: 2rem 0;
}
.delta-logo{
    height: 2.2rem;
    aspect-ratio: 199 / 22;
    background: url('../../../image/delta/app/main/kolasPopup/delta_logo.png') no-repeat center / 100%;
    margin: 0 auto;
}

.popup_footer{
    width: 100%;
    height: 7rem;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    display: flex;
}
.popup_footer .btn{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.btn-today{
    border-right: 1px solid rgba(119, 119, 119, 0.30);
}
.btn-today .btn_nm{
    color: #777
}
.btn-close .btn_nm{
    color: #444;
}
.btn_nm{
    font-size: 1.6rem;
    font-weight: 400;
}