.card.orderfrontmessage {
    margin: 20px 0;
}

.card.orderfrontmessage textarea {
    padding: 5px 10px;
    height: 200px;
    color: #666;
    font-size: 1rem;
    border-radius: 2px;
    border: 1px solid #CCC;
    background-color: #efefef;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.6);
    z-index: 99999;
}

.popup.show {
    display: flex;
}

.inside-popup {
    display: block;
    border: 1px solid #000;
    width: 40vw;
    padding: 10px;
    background: #FFF;
    border-radius: 5px;
    align-items: self-end;
    position: fixed;
    justify-content: center;
    top: 30vh;
    left: 30vw;
}

.inside-popup p {
    font-weight: bold;
    text-align: center;
}

.inside-popup p.show {
    display: block;
}

.inside-popup p.hide {
    display: none;
}
