@charset "utf-8";
/* CSS Document */
.popuponcewrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background: rgb(0 0 0 / 50%);
    z-index: 99999;
}

.popuponce {
    display: flex;
    flex-direction: column;
    width: calc(100% - 2rem);
    max-width: 35rem;
    max-height: calc(100% - 2rem);
    background-color: white;
    padding: 1rem;
    margin: auto auto auto auto;
    box-shadow: rgb(0 0 0 / 75%) 0px 0px 64px;
}


.popupbt {
    display: block;
    border-radius: 64px;
    padding-right: 1em;
    padding-left: 1em;
    padding-top: 0.75em;
    padding-bottom: 0.75em;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1em;
    border: solid black 1.5px;
    margin-right: 0.5em;
    min-height: 2.5em;
}

.popuponce_buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    margin-bottom: -0.5em;
    min-height: 3.5em;
}

.popupbt:hover {
    background: black;
    color: white;
}

.popupmessagebox {
    overflow-y: auto;
    width: 100%;
}