 .overlay {
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            transition: opacity 500ms;
            visibility: hidden;
            opacity: 0;
        }

        .overlay:target {
            visibility: visible;
            opacity: 1;
        }

        /* .popup {
            max-width: 40%;
            padding: 20px;
            margin: 0 auto;
            border-radius: 25px;
            position: relative;
        } */

        #confirmMain { height: 100px !important;}
        
        .popupClignote {
            margin: 70px auto;
            padding: 20px;
            margin-left: -30px;
            background: white;
            border-radius: 25px;
            width: 100%;
            height: 20px;
            position: relative;
            animation-duration: .8s;
            animation-name: clignoter;
            animation-iteration-count: infinite;
            transition: none;
        }


        .mostly-customized-scrollbar::-webkit-scrollbar {
            width: 5px;
            height: 8px;
            background-color: #aaa;
        }

        .popup h2 {
            margin-top: 0;
            color: #333;
            font-family: Tahoma, Arial, sans-serif;
        }

        .popup .close {
            position: absolute;
            top: 20px;
            right: 30px;
            transition: all 200ms;
            font-size: 30px;
            font-weight: bold;
            text-decoration: none;
            color: #333;
        }

        .popup .close:hover {
            color: #06D85F;
        }

        .popup .content {
            max-height: 100%;
            color: darkgray;
            font-weight: bolder;
        }

        .box {
            width: 70%;
        }

        .yes {
            position: absolute;
            top: 0px;
            right: 0px;
            transition: all 200ms;
            font-size: 10px;
            font-weight: bold;
            text-decoration: none;
            color: #333;
        }

@media screen and (max-width: 767px) {
    .popup {
        max-width: 70%;
    }
}
