.common-popup {
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    z-index: 9999;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
}

.common-popup-content {
    width: 350px;
    height: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.2) 7px 7px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-size: 16px;
    border-radius: 10px;
}

.common-popup-content button {
    width: 100%;
    height: 60px;
    border-radius: 20px;
}

.common-popup-content > div {
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

.common-popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    display: -moz-flex;
    display: -o-flex;
    -webkit-flex-wrap: wrap;
}

.common-popup-icon i {
    background-image: url('../img/icon_set.png');
    background-repeat: no-repeat;
    background-position: -1px -93px;
    display: block;
    margin: 0 auto;
    width: 52px;
    height: 52px;
}

.common-popup-text {
    display: flex;
    justify-content: center;
    align-items: center;
    display: -moz-flex;
    display: -o-flex;
    -webkit-flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    padding: 0;
    padding-top: 40px;
}

.common-popup-text > p {
    width: 100%;
    word-break: keep-all;
    margin: 10% 0 10% 0;
}

.common-popup-success-icon .common-popup-icon {
    background: #052A4A;
}

.common-popup-success-icon i {
    background-position: -1px -93px; /* 성공 아이콘 */
}

.common-popup-failed-icon .common-popup-icon {
    background: #E4404D;
}

.common-popup-failed-icon i {
    background-position: -1px -93px; /* 실패 아이콘 */
}

.common-popup-failed-icon button {
    background: #E4404D;
}
