.modal-window{
    position: fixed;
    width: 1000px;
    height: 80%;
    left: 50%;
    margin-left: -500px;
    top:10%;
    background-color: #fff;
    z-index: 200;
    border: 1px solid #fff;
}
.modal-wrapper{
    position: absolute;
    top:20px;
    left: 20px;
    bottom: 2px;
    right: 2px;
}
.modal-content{
    overflow: auto;
    height: 100%;
}
.modal-overlay{
    position: fixed;
    top:0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
    z-index: 100;
}
.modal-close-btn{
    position: absolute;
    top:0;
    right: 4px;
    padding: 3px;
    color: #a21c2f;
}