.modal {
    display: none;
    z-index: 10;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}

.modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login_container {
    position: relative;
    width: 100%;
    height: calc(100vh - 350px);
    margin: 0 auto;
    /*overflow: hidden;*/
}

.login_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 1224px;
    height: 594px;
    background-image: url("https://img.friendsgame.co.kr/tower/landing/sns_login_bg.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.login_wrap::before {
    content: " ";
    position: absolute;
    top: -160px;
    left: -5px;
    width: 627px;
    height: 747px;
    background-image: url("https://img.friendsgame.co.kr/tower/landing/sns_login_bg_ch.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.login_wrap .login_option_list {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-top: 5px;
}

.login_wrap .login_option_list li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 313px;
    height: 280px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #4F4F4F;
    color: #fff;
    gap: 10px;
    cursor: pointer;
}


.login_wrap .login_option_list li img, .login_wrap .login_option_list li span {
    margin-top: 20px;
}

.login_wrap .login_option_list li:first-child {
    border-radius: 15px 0 0 0;
}

.login_wrap .login_option_list li:last-child {
    border-radius: 0 15px 0 0;
}

.login_wrap .login_option_list li:last-child span {
    display: flex;
    align-items: center;
    height: 70px;
    font-size: 32px;
    font-weight: bold;
}

.customRadio {
    display: none;
}

.customRadio + label {
    display: inline-block;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    background-image: url("https://img.friendsgame.co.kr/tower/landing/check_off.png");
    background-repeat: no-repeat;
    background-position: center center;
}

.customRadio:checked + label::after {
    content: '';
    width: 31px;
    height: 31px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: contain;
    background-image: url("https://img.friendsgame.co.kr/tower/landing/check_on.png");
}

.login_info_wrap {
    width: 943px;
    height: 143px;
    border-radius: 0 0 10px 10px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #4F4F4F;
    border-top: none;
    margin-bottom: 20px;
    z-index: 0;
}

.login_info_wrap .info {
    display: none;
}

.login_info_wrap .active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 20px;
}

.login_info_wrap .info .main_info {
    font-weight: 600;
    font-size: 22px;
    color: #fff;
}

.login_info_wrap .info .sub_info {
    font-weight: 500;
    font-size: 20px;
    color: #fff;
}

.login_info_wrap .info .tip_info {
    font-weight: 500;
    font-size: 18px;
    color: #56cfff;
}

.login_wrap button.confirm_btn {
    padding: 18px 142px;
    box-shadow:none;
    overflow:visible;
    cursor: pointer;
    background-color: #323232;
    border-radius: 6px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 900;
    font-size: 26px;
    line-height: 15px;
    z-index: 3;
}

.login_wrap button.confirm_btn:hover {
    background-color: #fff;
    border: 2px solid #323232;
    color: #323232;
}


@media (max-width: 1920px) {
    .login_wrap {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -30%);
        width: 812px;
        height: 450px;
    }

    .login_wrap::before {
        content: " ";
        position: absolute;
        top: -80px;
        left: -5px;
        width: 413px;
        height: 473px;
    }

    .login_wrap .login_option_list li {
        width: 196px;
        height: 180px;
    }


    .login_wrap .login_option_list li img
    {
        width: 30px;
        height: 30px;
    }


    .login_wrap .login_option_list li:last-child span {
        font-size: 20px;
        height: 36px;
    }

    .customRadio + label {
        width: 15px;
        height: 15px;
        border-radius: 50%;
    }

    .customRadio:checked + label::after {
        width: 15px;
        height: 15px;
        top: 50%;
        left: 50%;
        background-size: contain;
        transform: translate(-50%, -50%);
    }

    .login_info_wrap {
        width: 588px;
        height: 100px;
    }

    .login_info_wrap .active {
        padding: 10px;
    }

    .login_info_wrap .info .main_info {
        font-size: 16px;
    }

    .login_info_wrap .info .sub_info {
        font-weight: 500;
        font-size: 14px;
    }

    .login_info_wrap .info .tip_info {
        font-size: 12px;
    }

    .login_wrap button.confirm_btn {
        padding: 9px 71px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .login_wrap {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -30%);
        width: 100vw;
        height: 320px;
    }

    .login_wrap::before {
        content: " ";
        position: absolute;
        top: -80px;
        left: -5px;
        width: 213px;
        height: 273px;
    }

    .login_wrap .login_option_list li {
        width: 30vw;
        height: 120px;
    }


    .login_wrap .login_option_list li img
    {
        width: 30px;
        height: 30px;
    }


    .login_wrap .login_option_list li:last-child span {
        font-size: 16px;
        height: 36px;
    }

    .customRadio + label {
        width: 15px;
        height: 15px;
        border-radius: 50%;
    }

    .customRadio:checked + label::after {
        width: 15px;
        height: 15px;
        top: 50%;
        left: 50%;
        background-size: contain;
        transform: translate(-50%, -50%);
    }

    .login_info_wrap {
        width: 90vw;
        height: 100px;
    }

    .login_info_wrap .active {
        padding: 10px;
    }

    .login_info_wrap .info .main_info {
        font-size: 14px;
    }

    .login_info_wrap .info .sub_info {
        font-weight: 500;
        font-size: 12px;
    }

    .login_info_wrap .info .tip_info {
        font-size: 12px;
    }

    .login_wrap button.confirm_btn {
        padding: 9px 71px;
        font-size: 13px;
    }
}

/*.modal-ch {*/
/*    position: absolute;*/
/*    bottom: 89px;*/
/*    left: 0;*/
/*    width: 342px;*/
/*    height: 458px;*/
/*    background-image: url("https://img.friendsgame.co.kr/tower/landing/bg_ch.png");*/
/*}*/

/*#gameStartTable {*/
/*    width:530px;*/
/*    color: #fff;*/
/*}*/

/*#gameStartTable th, td {*/
/*    font-size: 12px;*/
/*    line-height: 170%;*/
/*    height:40px;*/
/*    vertical-align: middle;*/
/*}*/

/*#gameStartTable .height10 {*/
/*    height:27px;*/
/*}*/

/*#gameStartTable td span{*/
/*    margin-left: 10px;*/
/*}*/

/*#gameStartTable td img {*/
/*    vertical-align:-6px;*/
/*}*/

/*#gameStartTable input {*/
/*    color:white;*/
/*    font-size:12px;*/
/*}*/

/*.identity-verification-btn {*/
/*    padding: 5px 10px;*/
/*    background-color: #fff;*/
/*    color: #000;*/
/*    font-weight: bold;*/
/*    border-radius: 2px;*/
/*}*/

/*.identity-verification-btn:hover {*/
/*    background-color: #323232;*/
/*    color: #fff;*/
/*}*/

/*.login-btn {*/
/*    margin-top: auto;*/
/*    margin-bottom: 25px;*/
/*    padding: 0 15px;*/
/*    width: 167px;*/
/*    height: 33px;*/
/*    background-color: #fff;*/
/*    color: #000;*/
/*    border-radius: 6px;*/
/*    font-weight: bold;*/
/*    border: 2px solid #424242;*/
/*}*/

/*.login-btn:hover {*/
/*    background-color: #323232;*/
/*    color: #fff;*/
/*    border: 2px solid #efefef;*/
/*}*/

.close-btn {
    position: absolute;
    top: -30px;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    font-size: 0;
    cursor: pointer;
}
.close-btn:before,
.close-btn:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 18px;
    background-color: #F0F0F0;
    transform: rotate(45deg) translate(-50%, -50%);
    transform-origin: top left;
    content: '';
}
.close-btn:after {
    transform: rotate(-45deg) translate(-50%, -50%);
}

.close-btn:hover::before, .close-btn:hover::after {
    background-color: #000;
}
