/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .mw_support{
    position:fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
 }
 .mw_support_body{
    padding :20px;
    background-color: white;
    border-radius: 4px;
    min-width: 300px;
    max-width: 500px;
    width: 100%;

 }
 .body_header {
    font-size: 16px;
    font-family: var(--font);
    font-weight: 600;
    border-bottom: 2px solid #fafafa;
    padding-bottom: 13px;
 }
 .body_header > h2{
    font-size: 20px;
 }
 .mw_body_modal,
 .mw_body_modal > *,
 .mw_body_modal > * > *{
    font-size: 15px;
    color: black !important;
    margin: 0px!important;
    padding: 0px!important;
}
.mw_body_modal {
    padding: 22px 0px !important;
}
a.delete {
    color: red;
    font-size: 17px;
}
.nf-response-msg > p {
    color: green;
    font-size: 20px;
}
@media only screen and (max-width: 600px) {
    .mw_support{
        background-color:white!important;
    }
    .mw_support_body{
        padding :10px;
    }
    .body_header {
        font-size: 14px;
    }
    .mw_body_modal {
        padding: 10px 0px !important;
    }
    .mw_body_modal,
    .mw_body_modal > *,
    .mw_body_modal > * > *{
        font-size: 13px;
    }
    .mw_support{
        display: block;
    }
}