﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

#MsgBox {
    position: relative;
    /*top: 50px;*/
    background-color: #f00;
    color: #FFF;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
    font-weight: bold;
    display: none;
    margin: 0 0 20px;
    padding: 10px 5px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
}

#MsgBox #MsgBoxClose {
    position: absolute;
    top: -2px;
    right: 5px;
    color: whitesmoke;
    cursor: pointer;
    font-size: 1.3rem;
}
    #MsgBox #LblMsgBox {
        white-space: pre-line;
        width: 100%;
        color: #FFF;
        background-color: #f00;
        font-size: 1rem;
        font-weight:400;
        border: 0;
        text-align: center;
        margin: 0;
        font-family: 'Outfit', sans-serif;
    }
   
