.payPop {
    z-index: 2000;
    position: fixed;
    height: 60%;
    top: 20%;
    border-radius: 10px;
    max-width: 800px;
    width: 80%;
    margin: 0 auto;
    left: 20%;
    right: 20%;
}

@media (max-width: 1300px) {
    .payPop {
        left: 0;
        right: 0;
        margin: auto;
    }
  }

.payPopWrap {
    z-index: 1999;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: #aaaaaa75;
    
}

.payEl {
    display: grid;
    margin-bottom: 15px;
}

.inpHeader {
    font-size: 0.93rem;
}

.inpBox {
    padding: var(0.75rem);
    background-color: white;
    border-radius: 5px;
    transition-property: background, border, box-shadow, color;
    transition-duration: 0.15s, 0.15s, 0.15s, 0.15s;
    transition-timing-function: ease, ease, ease, ease;
    transition-delay: 0s, 0s, 0s, 0s;
    border: 1px solid #e6e6e6;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02);
    padding: 12px;
}

.inpError {
    color: #df1b41;
    border-color: #df1b41;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02), 0 0 0 1px #df1b41;
}

.fadeIn {
    opacity: 1;
    transition: opacity .4s ease;
    display: block;
}

.lblError {
    color: #df1b41;
}