﻿#ovlmi_bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black50);
    z-index: 998;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
#ovlmi_container {
    position: relative;
    z-index: 999;
    max-height: 85vh;
}
#ovlmi_content {
    position: relative;
    text-align: center;
    max-height: 85vh;
    overflow-y: auto;
}
#ovlmi_close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 24px;
    color: var(--color-black50);
}
#ovlmi_close:hover {
    color: var(--color-black80);
}
#ovlmi_close.outside {
    position: absolute;
    top: -40px;
    right: -5px;
    cursor: pointer;
    font-size: 40px;
    color: var(--color-white100);
}
#ovlmi_close.outside:hover {
    color: var(--color-white100);
}
.ovlmi_hide {
    display: none;
}
body.ovlmi_body_open {
    overflow: hidden;
    padding-right: var(--scrollbar-width, 0px);
}