#mustang-modal-bg {
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 9990;
}

.mustang-modal-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9991;
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
}

.mustang-modal {
    position: relative;
    top: 0;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    box-shadow: 0 7px 23px 1px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 7px 23px 1px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 7px 23px 1px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    outline: 0;
    overflow: hidden;
}

.mustang-modal-title {
    padding: 2em 2em 0;
}

.mustang-modal-title h3 {
    margin: 0;
    padding: 0;
}

.mustang-modal-body {
    position: relative;
    padding: 2em;
    overflow-y: auto;
}

.mustang-modal-body iframe {
    border: none;
    min-height: 400px;
}

.mustang-modal-close-parent {
    position: absolute;
    width: 21px;
    height: 35px;
    right: 5px;
    top: 0;
}

.mustang-modal-close {
    margin: 0;
    padding: 0;
    position: fixed;
    z-index: 52;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    color: #007CB0;
    opacity: .5;
    cursor: pointer;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.mustang-modal-close:hover {
    opacity: 1;
}

.mustang-modal-footer {
    display: none;
}

@media screen and (max-width: 800px) {

    .mustang-modal {
        margin: 1em !important;
    }

    .mustang-modal-body {
        padding: 1em;
    }

    .mustang-modal-title {
        padding: 1em 1em 0;
    }
}