.payment-area-wrap{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.15);
    overflow: auto;
    height: 100%;
    z-index: 10000000000;
}

.payment-area-wrap .cancel-payment{
    position: absolute;
    top: 0;
    right: 0;
    margin: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #ff4040;
    box-shadow: 0 0 30px 10px rgba(0,0,0,.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 30px;
    font-weight: 700;
    z-index: 10000000000;
}

.payment-area-wrap .cancel-payment:hover{
    box-shadow: 0 0 40px 10px rgba(0,0,0,.4);
    width: 45px;
    height: 45px;
}

.payment-area-wrap iframe{
    position: absolute;
    left: calc(50% - 225px);
    width: 450px;
    overflow: hidden;
    margin: 40px auto 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 30px 10px rgba(0,0,0,.3);
    z-index: 1000000000;
    border: 0px none transparent;
    padding: 0px;
    -webkit-tap-highlight-color: transparent;
    visibility: visible;
    height: 100%;
}

.payment-area-wrap::-webkit-scrollbar {
    display: none;
}

.payd-alert-simple.payd-alert-success
{
    background-color: rgba(23, 122, 64, 0.122);
    box-shadow: 0px 0px 2px #259c08;
    color: #14c411;
    transition:0.5s;
    cursor:pointer;
    padding: 1rem;
}

.payd-alert:before {
    content: '';
    position: absolute;
    width: 0;
    height: calc(100% - 44px);
    border-left: 1px solid;
    border-right: 2px solid;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
    height: 20px;
}

@media(max-width: 500px){
    .payment-area-wrap iframe{
        width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }
}
