@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

.popup-wrap{
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: none; /* 처음에는 숨김 */
    justify-content: center; align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.popup-content{
    position: relative;
    width: 480px;
    height: 680px;
    background-color: #ffffff;
    overflow: hidden;
}
.popup-bg {
    position: relative;
    width: 100%;
    height: 636px;
    background-image: url(../assets/img/bariship-background-en.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
}
.popup-btn-area {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 8px;
}
.popup-btn-area button {
    width: 200px;
    border-radius: 50px;
    border: unset;
    background-color: transparent;
}
/* .popup-btn-area button a{
    display: block;
    font-size: 17px;
    padding: 12px 0;
    width: 100%;
    border-radius: 50px;
    font-weight: 500;
    color: #ffffff;
} */
.popup-btn-area button .btn-product {
    background-color: #4871e5;
    display: block;
    font-size: 17px;
    padding: 12px 0;
    width: 100%;
    border-radius: 50px;
    font-weight: 500;
    color: #ffffff;
}
.popup-btn-area button .btn-map-pc {
    background-color: #00baba;
    display: block;
    font-size: 17px;
    padding: 12px 0;
    width: 100%;
    border-radius: 50px;
    font-weight: 500;
    color: #ffffff;
}
.popup-btn-area button .btn-map-m {
    background-color: #00baba;
    display: none;
    font-size: 17px;
    padding: 12px 0;
    width: 100%;
    border-radius: 50px;
    font-weight: 500;
    color: #ffffff;
}
.popup-footer {
    font-size: 15px;
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-close-day, 
.popup-close-btn {
    width: 50%;
    border: unset;
    height: 100%;
    background-color: #ffffff;
    font-weight: 500;
    color: #111111;
}
.popup-close-day:hover, 
.popup-close-btn:hover {
    text-decoration: underline;
}
.popup-close-day {
    border-right: 1px solid #cccccc;
}

@media all and (max-width: 495px){
    .popup-content {
        margin: 0 20px;
        width: calc(100% - 40px);
        height: 70%;
    }
    .popup-bg {
        height: calc(100% - 28px);
        background-size: cover;
        background-position: center;
    }
    .popup-btn-area {
        bottom: 16px;
        gap: 0px;
    }
    .popup-btn-area button {
        width: 160px;
    }
    /* .popup-btn-area button a{
        font-size: 15px;
        padding: 8px 0;
    } */
    .popup-btn-area button .btn-product {
        font-size: 15px;
        padding: 8px 0;
    }
    .popup-btn-area button .btn-map-pc {
        display: none;
    }
    .popup-btn-area button .btn-map-m {
        display: block;
        font-size: 15px;
        padding: 8px 0;
    }
    .popup-footer {
        font-size: 14px;
        height: 28px;
    }
    
}
