.inihall-popup {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: none;
    overflow: hidden;
}
.inihall-popup__back-drop {

    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.inihall-popup__header {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    border-bottom: 0.1rem solid #E7E7E7;
    z-index: 100;
}
.inihall-popup__header__inner {
    width: 100%;
    /*height: var(--inihall-modal-header-height);*/
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.inihall-popup__header__title {
    margin-left: 1rem;
    font-weight: 800;
    font-size: var(--font8);
    /*color: var(--inihall-modal-header-title-color);*/
}
.inihall-popup__header i {
    /*color: var(--inihall-modal-header-icon-color);*/
}
.inihall-popup__content {
    position: absolute;
    overflow: hidden;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.3s;
    transform: translateY(100%);
}
.inihall-popup__content.slide-up {
    transform: translateY(0%);
    transition: transform 0.3s cubic-bezier(0.17, 0.67, 0.46, 0.97);
}
.inihall-popup__box {
    width: 20rem;
    min-height: 10rem;
    /*background-color: var(--inihall-app-background);*/
    border-radius: 1rem;
    box-shadow: 0.2rem 0.2rem 1.5rem rgba(0, 0, 0, 0.7);
    pointer-events: all;
}