.popup-message-sec {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999999;
    text-align: center;
}

.popup-visible {
    animation: fadeIn ease 0.2s;
    -webkit-animation: fadeIn ease 0.2s;
    -moz-animation: fadeIn ease 0.2s;
    -o-animation: fadeIn ease 0.2s;
    -ms-animation: fadeIn ease 0.2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.popup-message-sec .popup-message-ctn-bx {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 320px;
    max-height: 320px;

}

.popup-message-sec .popup-message-ctn-bx .popup-bx {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    padding: 10%;
    box-sizing: border-box;
    background: #fff;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 20px;
}

.popup-bx h4 {
    font-size: 2rem;
}

.popup-message-sec .popup-message-ctn-bx .popup-bx .error-img-bx {
    width: 80%;
    margin: 0px auto;
}

.popup-message-sec .popup-message-ctn-bx .popup-bx .error-img-bx img {
    width: 100%;
    display: block;
}

.popup-message-sec .pooup-ok-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 15px;
    height: 15px;
}

.popup-message-sec .pooup-ok-btn img {
    width: 100%;
    display: block;
}

.popup-message-sec .common-btn {
    text-transform: uppercase;
    color: #fff;
    padding: 10px 30px;
    max-width: 200px;
}

.popup-message-sec .popup-message-ctn-bx p {
    font-size: 1.3rem;
    line-height: normal;
}




@media (min-width: 1024px) and (orientation: landscape) {
    .popup-message-sec .popup-message-ctn-bx {
        width: 30vw;
        height: 30vw;
    }

    .popup-message-sec .popup-message-ctn-bx p {
        font-size: 1rem;
    }
}

@media (min-width: 1440px) and (orientation: landscape) {
    .popup-message-sec .popup-message-ctn-bx {
        width: 20vw;
        height: 20vw;
    }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
    .close-popup-btn {
        padding: 5px 18px;
    }
}



@media (min-width: 520px) and (orientation: portrait) {
    .popup-message-sec .popup-message-ctn-bx {
        width: 40vw;
        height: 40vw;
    }

    .popup-message-sec .popup-message-ctn-bx p {
        font-size: 1.5rem;
    }

    .popup-bx h4 {
        font-size: 2.2rem;
    }
}