.suyoolModal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.suyoolModalContent {
    background-color: #fefefe;
    border-radius: 15px;
    padding: 10px 20px;
    border: 1px solid #888;
    min-height: 800;
    min-width: 370;
}

@media (max-width: 767px) {
  .suyoolModalContent {
    width: 60%;
  }
}

@media (max-width: 480px) {
  .suyoolModalContent {
    width: 100%;
  }
}

.suyoolModalClose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.suyoolModalClose:hover,
.suyoolModalClose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.suyoolIframe {
    width: 100%;
    height: 820px;
    border-style: none;
}


