.sr-modal-window {
    display: none;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 2000;
}

.sr-modal-window .overlay {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.7);
}

.sr-modal-window .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 3px;
}

.sr-modal-window .container .close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    color: white;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    border-radius: 50%;
    background-color: red;
    cursor: pointer;
    text-transform: lowercase;
}

.sr-modal-window .container .content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}

.sr-modal-window .container .content .iframe-container {
    width: 100%;
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;

/*    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
*/}

.sr-modal-window .container .content::-webkit-scrollbar {
    display: none;
}
