﻿.popup {
    position: fixed;
    z-index: 9999999999999;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transition: all ease-in .3s;
    display: none;
}

    .popup .bg {
        position: fixed;
        background-color: #828282;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        opacity: 0.5;
        transition: all ease-in .3s;
    }

    .popup .divContact {
        position: relative;
        z-index: 9999999999999;
        width: 40%;
        margin: auto;
        margin-top: 50px;
        background-color: white;
        transition: all ease-in .3s;
        padding: 10px;
        box-shadow: 0 0 5px 4px rgba(115, 115, 115, 0.58);
    }

        .popup .divContact .close {
            height: 25px;
            position: absolute;
            margin: -10px 3px 0 3px;
            right: 0;
            background-color: white;
        }

        .popup .divContact .image {
            width: 100%;
        }
