.modalWindow {
    position:fixed;
    display:none;
    z-index:10004;
    background-color:#ffffff;
    border:2px solid #eeeeee;
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px;
    box-shadow: #666666 0px 5px 25px;
    -webkit-box-shadow: #666666 0px 5px 25px;
    -moz-box-shadow: #666666 0px 5px 25px;
    -webkit-overflow-scrolling:touch;
    transition: width .5s, height .5s;
}

.modalCloseButton {
    font-family: arial, tahoma, sans-serif;
    color: #ffffff;
    border-radius: 50%;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    padding: 4px;
    text-align: center;
    background-color: #ccccdd;
    width: 34px;
    height: 34px;
    top: -15px;
    right: -12px;
    border: 2px solid #eeeeee;
    position:relative;
    float:right;
    z-index:99999; /* higher than iframe */
    cursor:pointer;
    /* box-shadow: #666666 0px 5px 5px; */
    /* -webkit-box-shadow: #666666 0px 5px 5px; */
    /* -moz-box-shadow: #666666 0px 5px 5px; */
}

.modalCloseButton:hover {
    color: #ffffff;
    background-color: #ee5b6c;
    border-color: #ffffff;
}

.modalWindow iframe {
    top: -34px;
    position:relative;
    z-index:99998;
    overflow-y:auto;
    overflow-x:hidden;
    transition: width .5s, height .5s;
    -webkit-overflow-scrolling:touch;
}

.modalWindow.fullscreen iframe {
    top: -42px;
    width: 100vw !important;
    height: 100vh !important;
}

.modalWindow.fullscreen
{
    border-color:#ffffff;
    width: 100vw !important;
    height: 100vh !important;
    top: 0 !important;
    left: 0 !important;
}

.modalWindow.fullscreen .modalCloseButton
{
    top:10px;
    margin-right: 30px;
}

#mask {
    position:fixed;
    background-color: #ffffff;
    display: none;
    z-index: 10001;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}
