@charset "utf-8";

/* Modal - SaintJunya official
============================== */
.modal-wrapper {
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px 10px;
    text-align: center;
}

.modal-wrapper:not(:target) {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
    opacity: 1;
    visibility: visible;
    transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
    display: inline-block;
    height: 100%;
    margin-left: -.05em;
    vertical-align: middle;
    content: ""
}

.modal-wrapper .modal-window {
    box-sizing: border-box;
    display: inline-block;
    z-index: 20;
    position: relative;
    width: 90%;
    max-width: 600px;
    padding: 1.0em;
    border-radius: 5px;
    background: #ddd;
    vertical-align: middle
}

.modal-overlay {
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9)
}


/**/
.modal-window {
  height: 95%;
}
.modal-window .modal-content {
  height: 100%;
}
.modal-window .modal-content iframe{
  border: none;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}