.popup {
    background-color: rgba(0, 0, 0, 0.60);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1999999999;
    overflow: initial;
    transition: .15s ease-in-out;
    position: fixed;
    display: block;
    opacity: 1;
    font-family: 'Montserrat';

    .popup__content {
		
		width: calc(100% - 20px);
		word-wrap: break-word;
        padding: 18px;
        border-radius: 0px;
        border: 1px solid #000000;
        box-shadow: 0px 0px 30px 0px rgba(2, 2, 2, 1.00);
        background-color: rgba(255, 255, 255, 1.00);
        position: absolute;
        margin-bottom: 3em;
        z-index: 1999999999;
        margin-left: 4px;
        top: 50px;
    
        @media (min-width: 1024px) {
            width: 30%;
            left: 50%;
            transform: translateX(-50%);
        }
        
    
        .popup__content-info {
    
            .popup__img {
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 10px auto;
                padding: 10px 0;
            }
    
            p {
                text-align: center;
            }
        }
    
        .popup-close {
            position: absolute;
            height: 26px;
            width: 26px;
            left: auto;
            right: -13px;
            bottom: auto;
            top: -13px;
            padding: 0px;
            color: #ffffff;
            font-family: Arial;
            font-weight: 100;
            font-size: 24px;
            line-height: 24px;
            border: 2px solid #ffffff;
            border-radius: 26px;
            box-shadow: 0px 0px 15px 1px rgba(2, 2, 2, 0.75);
            text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.23);
            background-color: rgba(0, 0, 0, 1.00);
            cursor: pointer;
        }
    }
}

