
.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.popup-modal-close {
    position: absolute;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    right: 10px;
    top: 10px;
    cursor: pointer;
    color: #fff !important;
    line-height: 37px;
    text-align: center;
    font-size: 18px;
    background: red;
}

.popup-modal-inner {
    width: 430px;
    padding: 2rem 2rem 2rem;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 30%;
    -ms-transform: translate(-50%, -30%);
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
    -webkit-box-shadow: 0 0 15px -3px rgba(24, 24, 24, 0.25);
    -ms-box-shadow: 0 0 15px -3px rgba(24, 24, 24, 0.25);
    box-shadow: 0 0 15px -3px rgba(24, 24, 24, 0.25);
}

.error-msg {
    color: red !important;
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
}

.popup-modal h2 {
    font-size: 24px;
    color: #262626;
}

.popup-modal p {
    font-size: 16px;
    color: #5a5e62;
    line-height: 22px;
}

.popup-modal h2,
.popup-modal p {
    text-align: center;
}

@media all and (max-width: 767px) {
    .popup-modal-inner {
        width: 90%;
        height: auto;
        transform: translateY(0) translateX(0);
        padding: 10px 20px 20px;
        position: static;
        margin: 20px auto;
    }

    .popup-modal p {
        font-size: 15px;
    }

    .popup-modal h2 {
        font-size: 20px;
        color: #262626;
    }
}