@charset "UTF-8";

.dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    overflow: hidden;
    z-index: 100;
    display: none;
}

.back-warn-parent {
	
}

.back-warn {
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    background: #fff;
    width: 80%;
    max-width : 1100px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
    padding: 0;
    z-index: 101;
    display: none;
}

.back-warn .close-btn {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 1101;
    transition: .25s ease-in-out;
}

 .back-warn .close-btn span {
    position: absolute;
    top: 28px;
    left: 14px;
    width: 30px;
    height: 2px;
    background: #fff;
    display: block;
    transform: rotate(45deg);
    border-radius: 10px;
    transition: .25s ease-in-out;
}

.back-warn .close-btn span:last-child {
    transform: rotate(-45deg);
}

.back-warn h2 {
    line-height: 60px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    background: #080808;
    color: #fff
}

.back-warn p {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    font-weight: 500;
}

.back-warn .bwarn-btn {
    display: flex;
    justify-content: center;
    margin: 40px 0 50px;
}

.back-warn button {
    padding: 0;
    width: 115px;
    line-height: 50px;
    border: 1px solid #080808;
    background: none;
    letter-spacing: 1px;
    color: #080808;
}

.back-warn .back-confirm {
    display: block;
    line-height: 50px;
    width: 115px;
    text-align: center;
    font-weight: 500;
    margin-left: 30px;
    background: #080808;
    color: #fff;
    letter-spacing: 1px;
    transition: .25s ease-in-out;
}

@media (hover: hover) and (pointer: fine)
.back-warn .close-btn:hover {
    background: #b361ff;
}

/* 탈퇴 모달 */
.delete_account_detail div {
	margin: 5px 0;
    font-size: small;
    display: flex;
    flex-direction: row;
}

.delete_account_detail div span {
	width: fit-content;
	margin: 0px 7px;
}

