#ouibounce-modal {
    display: none;
}

/*#ouibounce-modal .underlay {
	z-index:1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0, 0.7);
    cursor: pointer;
    animation: fadein .10s;
}*/
#ouibounce-modal .underlay {
	z-index:1;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0, 0.7);
    cursor: pointer;
    animation: fadein .10s;
}

/*#ouibounce-modal .modalx {
    width: 600px;
    height: 400px;
    background-color: #F0F1F2;
    z-index: 1;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    border-radius: 0px;
    animation: popin .7s;
}*/
#ouibounce-modal .modalx {
    width: 600px;
    height: 400px;
    background-color: #F0F1F2;
    z-index: 1;
    position: fixed;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    border-radius: 0px;
    animation: popin .7s;
}

#ouibounce-modal h3 {
    font-size: 22px;
    background-color:#279FE8;
    color: white;
    padding: 10px;
    margin: 0;
    border-radius: 0px 0px 0 0;
    text-align: center;
}

#ouibounce-modal p {
    padding: 10px;
    color: #344A5F;
}

@keyframes fadein {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes popin {
    0% { transform: scale(0); opacity: 0; }
    85% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
