ï»¿.msgbox-area {
    font-size: inherit;
    max-height: 100%;
    position: fixed;
    bottom: 15px;
    left: 20px;
    right: 20px;
}

.msgbox-box {
    font-size: inherit;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1.5rem 0rem;
    display: flex;
    /*flex-direction: column;*/
    position: relative;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.65);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: opacity 256ms ease-in;
}

.msgbox-box.msgbox-box-hide {
    opacity: 0;
}

.msgbox-box:last-child {
    margin: 0;
}

.msgbox-content {
    padding-bottom: 0.5rem;
}

.msgbox-command {
    display: flex;
    align-items: center;
}

.msgbox-command .btn {
    width: 100%;
}

.msgbox-command .btn-outline-dark {
    color: #ffffff !important;
    border-color: #ffffff;
}

.msgbox-command .btn-outline-dark:hover {
    border-color: #212529;
}

.msgbox-a {
    color: #5C88DA;
    font-size: inherit;
    transition: color 64ms ease-out, text-shadow 64ms ease-out;
}

.msgbox-a:hover {
    color: #efefef;
    text-shadow: 0 0 4px #ffffff;
}

.msgbox-close {
    color: #ffffff;
    font-size: inherit;
    text-decoration: none;
    margin: 0 10px;
    flex-grow: 0;
    flex-shrink: 0;
    position: relative;
    transition: color 64ms ease-out, text-shadow 64ms ease-out;
}

.msgbox-close:hover {
    color: #efefef;
    text-shadow: 0 0 4px #ffffff;
}

.msgbox-close:first-child {
    margin-left: auto;
}

.msgbox-close:last-child {
    margin-right: 0;
}

.msgbox-area {
    font-size: 16px;
    z-index: 1000;
}

.msgbox-message-container {
    text-align: center;
    background-color: #ffffff;
    padding: 2rem;
    box-sizing: border-box;
    border-radius: 1rem;
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}

.msgbox-message-container h1, .msgbox-message-container h3 {
    font-weight: normal;
    padding: 0.5rem 1rem;
    margin: 0;
}

.msgbox-message-container h1:first-child, .msgbox-message-container h3:first-child {
    padding-top: 0;
}

.msgbox-message-container h1:last-child, .msgbox-message-container h3:last-child {
    padding-bottom: 0;
}

.msgbox-message-container p {
    padding: 0.5rem 1rem;
    margin: 0;
}

.msgbox-message-container p:first-child {
    padding-top: 0;
}

.msgbox-message-container p:last-child {
    padding-bottom: 0;
}
