/* [S] 시스템 팝업 공통 레이아웃 UI */
#systemPopup.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    justify-content: center;
    align-items: center;
    z-index: 50;
}

#systemPopup.popup.active {
    display: flex;
}

#systemPopup .popup-content {
    padding: 0 20px;
    width: 100%;
    height: fit-content;
    max-width: 375px;
    position: relative;
}

#systemPopup .swiper-slide {
    display: none;
    border-radius: 4px;
    background-color: #FFFFFF;
    padding: 19px 16px 30px;
    height: auto;
    position: relative;
}

#systemPopup .swiper-slide:has(.content):not(:has(.title)) {
    padding: 30px 16px;
}

#systemPopup .swiper-slide.active {
    display: block;
}

#systemPopup .swiper-slide > div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#systemPopup .swiper-slide .title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #131518;
    margin-bottom: 19px;
    padding-right: 30px;
}

#systemPopup .swiper-slide .content {
    flex-grow: 1;
    color: #757D86;
    font-size: 13px;
    line-height: 18px;
}

#systemPopup .swiper-slide .btnArea {
    margin-top: 24px;
    width: 100%;
    display: flex;
    gap: 10px;
}

#systemPopup .swiper-slide button {
    flex: 1;
    padding: 11px 0;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-weight: 700;
    border-radius: 4px;
}

#systemPopup .swiper-slide button.primaryBtn {
    background-color: #131518;
    color: #FFFFFF;
}

#systemPopup .swiper-slide button.secondaryBtn {
    border: 1px solid #131518;
    color: #131518;
}

#systemPopup .swiper-slide .textLink {
    margin-top: 12px;
    display: inline-block;
    font-size: 13px;
    line-height: 18px;
    color: #757D86;
    width: 100%;
    text-align: center;
}

#systemPopup .swiper-pagination {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

#systemPopup .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #D9D9D9;
}

#systemPopup .swiper-pagination-bullet-active {
    width: 16px;
    background-color: #FFFFFF;
    border-radius: 3px;
}

#systemPopup button.closePopupBtn {
    display: flex;
    position: absolute;
    top: 19px;
    right: 16px;
    z-index: 1;
    width: 18px;
    height: 18px;
    padding: 2.53px;
}

#systemPopup button.closePopupBtn svg {
    width: 100%;
    height: 100%;
}

#systemPopup button.closePopupBtn svg path {
    stroke-width: 1.4px;
}

@media (min-width: 1200px) {
    #systemPopup .popup-content {
        padding: 0;
        width: 400px;
        max-width: 400px;
        position: absolute;
        bottom: 50px;
        right: 30px;
    }

    #systemPopup .popup-content.center {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    #systemPopup .swiper-slide {
        border-radius: 0;
        padding: 24px 30px 32px;
    }

    #systemPopup .swiper-slide:has(.content):not(:has(.title)) {
        padding: 30px;
    }

    #systemPopup .swiper-slide .title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 20px;
        padding-right: 56px;
    }

    #systemPopup .swiper-slide button {
        padding: 14px 0;
        font-size: 16px;
        line-height: 22px;
    }

    #systemPopup .swiper-slide .content {
        font-size: 16px;
        line-height: 22px;
    }

    #systemPopup .swiper-slide .textLink {
        margin-top: 10px;
        font-size: 14px;
        line-height: 20px;
        cursor: pointer;
    }

    #systemPopup button.closePopupBtn {
        top: 24px;
        right: 30px;
        width: 22px;
        height: 22px;
        padding: 3.09px;
    }

    #systemPopup button.closePopupBtn svg path {
        stroke-width: 1.7px;
    }
}
/* [E] 시스템 팝업 공통 레이아웃 UI */

/* [S] 캘리포니아 접속 팝업 CONTENT UI */
#california-popup .content .check-group {
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 16px;
    line-height: 22px;
}

#california-popup .content .check-group .wrap-ipt-check {
    display: flex;
}

#california-popup .content .check-group .wrap-ipt-check label {
    min-width: 20px;
    min-height: 20px;
    padding-left: 20px;
}

#california-popup .content .check-group input + label .ico {
    padding-left: 20px;
    min-height: 20px;
}

#california-popup .content .check-group  input + label .ico::before {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #C9CDD2;
    border-radius: 100%;
    left: 0;
    top: 0;
    transition: background-color 0.3s;
}

#california-popup .content .check-group input:checked + label .ico::before {
    background-color: #FFFFFF;
    border: 1px solid #131518;
    transition: background-color 0.3s;
}

#california-popup .content .check-group input:checked + label .ico::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 3px;
    top: 3px;
    border-radius: 100%;
    background-color: #131518;
    width: 14px;
    height: 14px;
}

#california-popup .content .check-group .ipt-label {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    padding-left: 12px;
    color: #131518;
}

@media (min-width: 1200px) {
    #california-popup .content .check-group {
        padding: 20px 0;
    }
    #california-popup .content .check-group .ipt-label {
        font-size: 16px;
        line-height: 22px;
    }
}
/* [E] 캘리포니아 접속 팝업 CONTENT UI */