﻿.eMarketerProfileModalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    opacity: 1;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}

.eMarketerProfileModalDialog > div {
    position: relative;
    margin: 0 auto;
    padding: 20px 0 30px 0;
    background-color: #efeeed;
    overflow: hidden;
    height: 90vh;
}

#profileIframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 768px) {
    .eMarketerProfileModalDialog > div {
        width: 500px;
        height: 90vh;
        max-height: 770px;
        box-shadow: 0 0 30px #000;
        border-radius: 10px;
        padding: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    #profileIframe {
        height: 100%;
    }
}

