.mini-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none !important;
    justify-content: center;
    align-items: center;
    z-index: 4090;
    margin: 0 !important;
    /* border-radius: 8px; */
}
  
.mini-window.show {
    display: flex !important;
    margin: 0 !important;
}

.mini-window-main {
    /* min-width: 800px;
    background: white;
    min-height: 600px; */
    min-width: 800px;
    max-width: 800px;
    background: white;
    min-height: 700px;
    padding: 30px 40px;
    border-radius: 8px;
}

.btn-window-close {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent;
    border: none;
    box-shadow: none;
}

.btn-window-close:hover {
    background: transparent;
    border: none;
}

@media (max-width: 1400px) {
    .mini-window-main {
        /* min-width: 800px;
        background: white;
        min-height: 600px; */
        min-width: 800px;
        max-width: 800px;
        background: white;
        /* min-height: 700px; */
        min-height: 300px;
        max-height: 75vh;
        padding: 30px 40px;
        border-radius: 8px;
    }

    .mini-window .response {
        font-size: clamp(14px, 1.2vh, 16px);
    }

    .mini-window .content-table-hidden,
    .mini-window .content-table {
        height: 50%;
        max-height: none;
    }
}