.warnbox {
    position:fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    
}

.warn {
  padding: 16px;
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    /* transform:translateY(-50%); */
    width: 800px;
    min-height: 200px;
    background-color:#fff;
    border-radius: 8px;
}
.warn-head {
    color:#000;
    font-size: 25px;
    padding: 8px;
}

.warn-bood {
    max-height: 60vh;
    overflow: auto;
}

.warn-footer {
    padding: 16px;
    display:flex;
    justify-content: center;
}

.warnX {
  position: absolute;

  right: 10px;
  top: 30px;
}

@media (max-width: 991.98px) {
    .warn {
        width: 94%;
    }
}