/* POPUP */
.weip-modal 
{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s, opacity 0.2s linear;
    z-index: 100;
}

.weip-modal-content 
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: #fff; */
}

.weip-close-button 
{
    text-align: center;
    cursor: pointer;
    font-size: 1.8em;
    color: #a7a7a7;
    font-weight: 100;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    position: absolute;
    right: -25px;
    top: -25px;
    font-weight: 600;
    z-index: 10000;
}

.weip-close-button:hover 
{
    color: #929292;
    transition: all .4s ease;
	-webkit-transition: all .4s ease;
}

.weip-show-modal 
{
    visibility: visible;
  	opacity: 1;
  	transition: visibility 0s, opacity 0.2s linear;
}

.weip-popup-dynamic-loading
{
	background-image: url(../img/loading.gif);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 100px;
    width: 155px;
    text-align: center;
    padding-left: 45px;
}

