<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.Mymodal {
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    top: 0;
    display: flex;
    align-items: center;
}

.Mymodal.active {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 500;
    opacity: 1;
}

.Mymodal.disable {
    width: 0%;
    height: 0%;
    z-index: -1;
    opacity: 0;
}

.Mymodal-inner {
  width: 95%;
  margin: 0 2.5%;
  background: white;
  position: relative;
  border: 2px solid #78b70c;
}

.Mymodal-img {
  width: 100%;
}

.Mymodal-cross {
    width: 40px;
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 10px;
    cursor: pointer;
}</pre></body></html>