.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;
    
}

.popup-message-sec .popup-message-ctn-bx .popup-bx {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    padding: 10%;
    box-sizing: border-box;
    color: #000;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 20px;
}


.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-ctn-bx p{
    font-size: 0.8rem;
}

@media (min-width: 1024px){
    .popup-message-sec .popup-message-ctn-bx{
        width: 30vw;
        height: 30vw;
    }
}

