.modal_container {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    pointer-events: none;
    background-color: rgba(0, 0, 0, .6);
    backdrop-filter: blur(8px);
&:target {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
}
#modal_overlay {
position: fixed;
z-index: 105;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
max-height: 100vh;
}
.modal_dialog {
    position: absolute;
    z-index: 110;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    padding: 1rem;
    margin: 0 auto;
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14),
              0 3px 14px 2px rgba(0, 0, 0, 0.12),
              0 5px 5px -3px rgba(0, 0, 0, 0.20);
    max-height: 90vh;
    overflow-y: scroll;
}
a.modal_close {
border-bottom: none;
color: var(--red);
float: right;
font-size: 1.5rem;
}