.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255, 0.66);
    z-index: 100;
}

.popup .pop-wrap {
    background-color: #ffffff;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 102;
    padding: 26px 40px;
    -webkit-box-shadow: 0px 0px 14px -6px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 14px -6px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 14px -6px rgba(0,0,0,0.75);
}

.popup .pop-wrap .pop-title {
    color: #1f1f1f;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.4px;
    margin-right: 30px;
    text-align: left;
}

.popup .pop-wrap .close-pop img{
    width: 20px;
    height: 20px;
}
.popup .pop-wrap .close-pop {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.popup .pop-wrap .pop-content {
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid #202020;
    padding: 15px 30px;
    margin-bottom: 20px;
}

.popup .pop-wrap .pop-content.notification-content {
    padding: 15px 0;
}

.popup .pop-wrap .pop-content .right-col {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    padding-left: 35px;
    display: flex;
    text-align: left;
    flex-direction: column;
    width: auto;
}

.popup .pop-wrap .pop-content .right-col div {
    min-width: 200px;
    margin-bottom: 15px;
}

.popup .pop-wrap .pop-content .right-col div span {
    display: block;
    float: right;
    clear: both;
}

.popup .pop-wrap .pop-content .right-col .name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.popup .pop-wrap .pop-content .right-col .total-price {
    color: #202020;
    font-size: 24px;
    font-weight: 700;
    text-align: right;
    margin-top: 35px;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
            justify-content: flex-end;
}
.popup .pop-wrap .pop-content .right-col .total-price span {
    margin-left: 5px;
}

.popup .pop-wrap .pop-content .right-col .total-price sup {
    font-size: 14px;
}

.popup .pop-wrap .butt-nav {
    display: flex;
    justify-content: space-between;
}

.popup .pop-wrap .butt-nav div {
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: -0.28px;
    transition: 0.4s all ease;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    padding: 3px;
}

.popup .pop-wrap .butt-nav .realization a{
    color:#202020
}

.popup .pop-wrap .butt-nav .realization a:hover{
    color:#57c6ff;
}

.popup .pop-wrap .butt-nav .continue {
    background-color: #57c6ff;
    border: 2px solid #57c6ff;
}

.popup .pop-wrap .butt-nav .continue:hover {
    color: #202020;
    background-color: #ffffff;
}

@media screen and (max-width: 480px) {
    .popup .pop-wrap .pop-content .left-col {
        display:none;
    }

    .popup .pop-wrap .pop-content {
        padding-left:0px;
    }

    .popup .pop-wrap .pop-content .right-col {
        padding-left:0px;
    }
}