.av-box-container{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1110;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: none;
    background: #00000085;
    backdrop-filter: blur(1px)
}
.box-inner-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.box-body{
    background: white;
    border-radius: 4px;
    padding: 1rem;
    width: 100%;
    margin: 0.6rem;
    max-height: 98vh;
    overflow: auto;
}
@media screen and (min-width: 600px) {
    .av-box-cell>div{
        padding: 0 50px;
    }
}