@charset "UTF-8";

/* jquery.mrdModal.css */

html.mrd-modal-scroll {
    overflow: hidden;
}

html.mrd-modal-scroll > body.mrd-modal-scroll {
    overflow-y: scroll;
    overflow-x: hidden;
}

.mrd-modal-content {
    position: absolute;
    display: none;
    top: auto;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    max-width: 718px;
    min-width: 320px;
    margin: 30px auto;
}

.mrd-modal-overlay {
    z-index: 10001;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.mrd-modal-wrapper {
    z-index: 10002;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.mrd-modal-in {
    -webkit-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
            transform: translate(0, -25%);
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
}

.mrd-modal-active {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
}