.modal-bg {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    cursor: pointer;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 400;
    overflow: scroll;
    cursor: pointer;
}

.modal-wrapper {
    z-index: 500;
    display: flex;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.modal {
    background: #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    cursor: default;
}

.modal-content {
    padding: 30px;
    padding-top: 0;
    margin-top: 45px;
    max-height: 85vh;
    overflow: auto;
    box-sizing: border-box;
}

.modal-close {
    font-family: Open Sans;
    color: #b1b0ac;
    font-size: 30px;
    line-height: .5;
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover {
    color: #e72626;
}

@media only screen and (max-width: 550px) {
    .modal-content.video {
        padding: 0;
    }
}