
body {
    min-height: 100vh;
    display: block;
    font-family: 'Open Sans', sans-serif;
    /* overflow: hidden; */
    background-color: #f5f5f5;
}

m-module h1 span {
    font-size: .85em;
    color: #444;
    font-weight: 800;
}

    h1.c {
        text-align: center;
    }

h2 {
    font-size: 1em;
    color: #000;
    font-weight: 800;
}

    h2.c {
        text-align: center;
    }
    m-card h2 span {
        font-size: .95em;
        color: #444;
        font-weight: 800;
    }
        m-card h2 span.sm {
            font-weight: 400;
            margin-left: 1em;
        }

h3 {
    font-size: .7em;
    color: #000;
}
    h3.c {
        text-align: center;
    }
    h3.binRdm {
        padding-right: 1em;
    }

h4 {
    font-size: .9em;
}

h5 {
    font-size: .9em;
    color: #555;
}

h6 {
    font-size: .7em;
}

tr > th {
    border: 1px solid #000;
    font-size: .8em;
}

::-webkit-scrollbar {
    display: none;
}

.fixed {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.hidden {
    visibility: hidden;
}
.none {
    display: none;
}

h1.lg {
    font-size: 2em;
    font-weight: 800;
}

h1.white,
h2.white {
    color: white;
}

p {
    font-size: .9em;
}

a {
    color: #B61E2E;
    text-decoration: none;
}
    a:hover {
        text-decoration: underline;
    }
m-a {
    font-size: .65em;
    color: #B61E2E;
    margin-top: .5em;
}

* {
    outline: none;
}

.remove {
    font-size: .6em;
    color: #CCC;
}
    .remove:hover {
        cursor: pointer;
        text-decoration: underline;
    }

.light {
    color: #d9d9d9;
}

/*--M-NAVIGATION-------------------------------------------------------------------------------*/
m-navigation {
    width: 175px;
    height: 100%;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 998;
    position: absolute;
    transform: translateY(0);
    top: 0;
    left: 0;
    background-color: #B61E2E;
    transition: all .25s;
}

    m-navigation.minimized {
        width: 42px;
    }

        m-navigation.minimized m-image,
        m-navigation.minimized h1,
        m-navigation.minimized h2,
        m-navigation.minimized span {
            opacity: 0;
        }

    m-navigation h1 {
        color: #FFF;
        font-size: .7em;
    }

    m-navigation h2 {
        color: #FFF;
        font-size: .7em;
        font-weight: 100;
    }

    m-navigation i,
    m-navigation svg {
        fill: #FFF !important;
        color: #FFF;
        width: 1.5em !important;
        height: 1.5em !important;
    }

    m-navigation .btnOpenMenu,
    m-navigation .btnCloseMenu {
        margin: 1em 0 0 0 !important;
    }

    m-navigation m-flex.sC {
        margin: .15em 0;
        transition: all .35s;
    }

        m-navigation m-flex.sC:hover {
            background-color: rgba(0,0,0,.05);
        }

        m-navigation m-flex.sC.active {
            background-color: rgba(0,0,0,.05);
            border-left: 2px solid #FFF;
        }

    m-navigation.minimized h1,
    m-navigation.minimized h2,
    m-navigation span {
        transition: all .25s;
    }

    m-navigation span {
        color: #FFF;
        font-size: .75em;
        height: 40px;
        line-height: 40px;
        letter-spacing: .25px;
    }

    m-navigation label {
        padding: .5em 1em .5em 1em;
        margin-top: 0;
        border-top: 1px solid rgba(0,0,0,.1);
        font-size: .75em;
        color: #c3c3c3;
    }

        m-navigation label:hover {
            cursor: pointer;
            background-color: rgba(0,0,0,.05);
        }

    m-navigation m-sub {
        overflow: hidden;
    }

    m-navigation .icon {
        margin: 0 .35em 0 .25em;
    }
/*--M-NAVIGATION-------------------------------------------------------------------------------*/
/*--M-GLOBAL---------------------------------------------------------------*/
m-global {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: #FFF;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    z-index: 999;
    height: 50px;
}

    m-global m-flex {
        height: 50px;
    }

    m-global span {
        font-size: .8em;
    }

    m-global img {
        max-height: 35px;
    }

    m-global .h {
        border-bottom: 2px solid #FFF;
    }
        /*m-global .h.active,*/
        m-global .h:hover {
            border-bottom: 2px solid #B61E2E;
        }
/*--M-GLOBAL---------------------------------------------------------------*/
/*--M-MENU---------------------------------------------------------------*/
m-menu {
    position: absolute;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    z-index: 100000;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    /*max-height: 200px;*/
}

    m-menu:after {
        content: '';
        position: absolute;
        top: -10px;
        left: 10px;
        z-index: 0;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #FFF;
        filter: drop-shadow(0 -1px 1px rgba(0,0,0,.25));
    }
    m-menu.flip:after {
        left: calc(100% - 30px);
    }

    m-menu m-secondary {
        position: initial;
        width: 100%;
        padding-left: initial !important;
        min-width: 100%;
        height: 30px;
        font-size: .75em;
    }

        m-menu m-secondary m-flex.tab {
            height: 30px;
            padding: .5em 1em;
        }

    m-menu m-button {
        text-align: left;
    }

        m-menu m-button[data-type="tertiary"]:hover {
            background-color: #B61E2E;
            color: #FFF;
        }

    m-menu.nMH {
        max-height: initial;
    }

    m-menu h2 {
        color: #000;
    }

    m-menu m-header {
        background-color: #FFF;
    }

        m-menu m-header m-button[data-type="secondary"] {
            border: none;
            height: 50px;
            line-height: 50px;
        }

            m-menu m-header m-button[data-type="secondary"].active {
                background-color: #00AEEF;
                color: #FFF;
            }

    m-menu m-body {
        position: initial;
    }
/*--M-MENU---------------------------------------------------------------*/

/*--PREVIEW-------------------------------------------------------------------------------*/
.preview {
    position: fixed;
    width: 50vw;
    height: 90vh;
    left: 42vw;
    z-index: 10001;
    top: 5vh;
    display: none;
}

.previewWindow {
    justify-content: center;
    align-items: center;
    padding: 0;
    /* height: 400px; */
    width: 100%;
    margin: 1em auto;
}

.preview img {
    /* max-width: 45%; */
    max-height: 70vh;
    margin: 0 auto;
    border: 1px solid #DDD;
}
/*--PREVIEW-------------------------------------------------------------------------------*/

/*--M-SELECT-------------------------------------------------------------------------------*/
m-select {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFF;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    z-index: 1000;
    border-radius: 2px;
}
    m-select m-option {
        width: 100%;
        padding: .5em 1em;
        font-size: .75em;
    }
        m-select m-option:hover {
            cursor: pointer;
            background-color: #EEE;
        }
/*--M-SELECT-------------------------------------------------------------------------------*/

/*--M-NUMBER------------------------------------------*/
#h1Code {
    text-align: center;
    font-size: 3em;
}
    #h1Code.error {
        color: #B61E2E;
    }
    #h1Code.success {
        color: green;
    }
.numbers {
    min-width: 375px;
    width: 100%;
    margin: 0;
}
m-number {
    display: flex;
    width: 100px;
    height: 100px;
    align-items: center;
    justify-content: center;
    background-color: #EEE;
    margin: 0px 5px 5px 0px;
    font-size: 3em;
    transition: all .35s;
}
    m-number:hover {
        cursor: pointer;
        background-color: #DDD;
    }
/*--M-NUMBER------------------------------------------*/

/*--M-PULL------------------------------------------*/
m-pull {
    display: block;
    height: 15px;
    background-color: #EEE;
    position: relative;
}
    m-pull m-middle {
        position: absolute;
        top: 0;
        left: calc(50% - 4px);
        width: 8px;
        background-color: #FFF;
        height: 100%;
        z-index: 100;
    }
    m-pull m-advice {
        max-width: 50%;
        height: 100%;
        background-color: #DDD;
        position: absolute;
        top: 0;
        left: 50%;
    }
        m-pull m-advice.green {
            background-color: green;
        }
        m-pull m-advice.red {
            background-color: red;
        }
/*--M-PULL-------------------------------------------------------------------------------*/

/*--M-ACCORDIAN-------------------------------------------------------------------------------*/
m-accordian {
    overflow: hidden;
    margin-bottom: .25em;
}
    m-accordian m-banner {
        display: block;
        padding: .5em 1em;
        cursor: pointer;
        background: #FFF;
        color: #424242;
        /*border: 1px solid #dcdee1;*/
    }
        m-accordian.active m-banner {
            background: #B61E2E;
            color: white;
        }
        m-accordian m-banner h3 {
            margin: 0;
        }
            m-accordian.active m-banner h3 {
                color: white;
            }
    m-accordian m-content {
        padding: 0;
    }
    m-accordian m-content::-webkit-scrollbar {
        display: block;
        width: .75em;
    }
    ::-webkit-scrollbar-track {
        background-color: #FFF;
    }
    ::-webkit-scrollbar-thumb {
        background-color: #eeeeee;
        border: 1px solid #DDD;
        /*border-radius: .5em;*/
    }

    m-space {
        width: 100%;
        height: 400px;
        display: block;
    }
/*--M-ACCORDIAN-------------------------------------------------------------------------------*/

/*--M-IMAGE-------------------------------------------------------------------------------*/
m-image {
    position: relative;
    background-color: #EEE;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    display: block;
}
    m-image.icon {
        width: 40px;
        min-width: 40px;
        max-width: 40px;
        height: 40px;
    }
        m-image.icon.lD {
            width: 70px;
            min-width: 70px;
        }
    m-image.icon.sm {
        width: 30px;
        min-width: 30px;
        max-width: 30px;
        height: 30px;
    }
    m-image.circle {
        border-radius: 50%;
    }
    m-image.sQ {
        padding-bottom: 100%;
    }
    m-image.hA {
        padding-bottom: 50%;
    }
    m-image.cover {
        background-size: cover;
    }
    m-image.tR {
        background-color: transparent;
    }
/*--M-IMAGE-------------------------------------------------------------------------------*/

/*--M-BAR-------------------------------------------------------------------------------*/
m-bar {
    height: 10px;
    width: 100%;
    max-width: 400px;
    background-color: #D8D8D8;
    border-radius: 2px;
    display: block;
    position: relative;
    margin: 0 .5em;
}
    m-module m-bar {
        max-width: 100%;
    }
    m-bar.moving {
        max-width: 400px;
        height: 40px;
        margin-top: .5em;
        background-color: #B61E2E;
        background-image: -webkit-linear-gradient(135deg, rgba(255,255,255,0.125) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.125) 50%, rgba(255,255,255,0.125) 75%, transparent 75%, transparent);
        background-image: linear-gradient(-45deg, rgba(255,255,255,0.125) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.125) 50%, rgba(255,255,255,0.125) 75%, transparent 75%, transparent);
        background-size: 35px 35px;
        -webkit-animation: cssProgressActive 2s linear infinite;
        animation: cssProgressActive 2s linear infinite;
    }

    @-webkit-keyframes cssProgressActive { 
        0% { background-position: 0 0; }
        100% { background-position: 35px 35px; }
    }
    @keyframes cssProgressActive {
        0% { background-position: 0 0; }
        100% { background-position: 35px 35px; }
    }
    @-webkit-keyframes cssProgressActiveRight {
        0% { background-position: 0 0; }
        100% { background-position: 35px 35px; }
    }
    @keyframes cssProgressActiveRight {
        0% { background-position: 0 0; }
        100% { background-position: 35px 35px; }
    }

    m-bar.progress {
        margin: .5em 0 0 0;
    }
    m-bar span {
        height: 10px;
        border-radius: 2px;
        background-color: #B61E2E;
        position: absolute;
        display: block;
    }

    m-bar.rdmBar {
        margin: 0;
    }
    
    #barCompanyLogo,
    m-accordian #barOrderFile {
        margin: 0;
        height: 36px;
    }
        #barCompanyLogo span,
        m-accordian #barOrderFile span {
            height: 36px;
        }
/*--M-BAR-------------------------------------------------------------------------------*/

/*--M-SUBMENU-------------------------------------------------------------------------------*/
m-submenu {
    position: absolute;
    left: 0;
    bottom: 50px;
    background-color: #FFF;
    width: 100%;
    font-size: .9em;
}
    m-submenu > m-flex:hover {
        background-color: #EEE;
    }
/*--M-SUBMENU-------------------------------------------------------------------------------*/

/*--M-BUTTON-------------------------------------------------------------------------------*/
m-button {
    padding-left: 1em;
    padding-right: 1em;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    text-transform: none;
    font-size: .9em;
    text-align: center;
    border-radius: 2px;
}
    m-card.active[data-label="Settings Body"],
    m-card.primary,
    m-button[data-type="primary"] {
        background-color: #B61E2E;
        color: #FFF;
    }
    m-button[data-type="secondary"] {
        background-color: #FFF;
        color: #424242;
        border: 1px solid #454545;
    }
        m-button[data-type="secondary"]:hover,
        m-button[data-type="secondary"]:active {
            background-color: #B61E2E;
            color: #FFF;
        }
    m-button[data-type="quaternary"] {
        background-color: #B61E2E;
        color: #FFF;
    }

        m-button[data-type="quaternary"]:hover,
        m-button[data-type="quaternary"]:active {
            background-color: #FFF;
            color: #424242;
            border: 1px solid #454545;
        }
    m-button[data-type="quinary"] {
        background-color: #fffa00;
        color: #000;
        font-size: larger;
    }
    m-button[data-type="tertiary"] {
        background-color: transparent;
        color: #424242;
    }
        m-button:hover {
            cursor: pointer;
        }

    m-button.lg {
        height: 72px;
        line-height: 72px;
        padding-left: 3em;
        padding-right: 3em;
    }

    m-button.disabled,
    m-button.disabled:active,
    m-button.disabled:focus,
    m-button.disabled:hover {
        background-color: rgba(200,200,200,.1) !important;
        color: rgba(0,0,0,.25) !important;
        background-image: none;
        -webkit-box-shadow: 0px 0px 0px 0px rgba(69,69,69,0);
        box-shadow: 0px 0px 0px 0px rgba(69,69,69,0);
        cursor: not-allowed;
    }

    .footer m-button {
        margin-left: .5em;
    }
/*--M-BUTTON-------------------------------------------------------------------------------*/

.cards .tableRow {
    margin-bottom: .25em !important;
}
.tableRow h2 {
    flex: 1;
}
    .tableRow h2:hover {
        cursor: pointer;
    }
    .tableRow.totals h2,
    .tableRow:first-child h2 {
        font-size: .7em;
        color: #CCC;
        position: relative;
    }
    .tableRow h2.sortdesc,
    .tableRow h2.sortasc {
        font-weight: 800;
        color: #454545;
    }
    .tableRow h2.sortasc:after {
        content: '';
        position: absolute;
        left: 80%;
        top: 5px;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #454545;
        clear: both;
    }
    .tableRow h2.sortdesc:after {
        content: '';
        position: absolute;
        left: 80%;
        top: 5px;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #454545;
        clear: both;
    }

.tableRow .placeholder {
    width: 50px;
    height: 5px;
    padding: 0;
    visibility: hidden;
}
/*--M-FOOTER-------------------------------------------------------------------------------*/
m-footer {
    display: block;
    width: 100%;
    min-height: 50px;
    background-color: #EEE;
}
    m-footer p {
        font-size: .8em;
        color: #AAA;
        margin-bottom: .25em;
        margin-right: 4em;
    }
        m-footer p:hover {
            text-decoration: underline;
        }
/*--M-FOOTER-------------------------------------------------------------------------------*/

/*--M-FLEX-------------------------------------------------------------------------------*/
m-flex {
    display: flex;
    padding: 1em;
    position: relative;
}
    m-flex.abs {
        position: absolute;
        top: .25em;
        right: .25em;
        z-index: 1000;
    }
    .w,
    m-flex.w {
        width: 100%;
    }
    .w75,
    m-flex.w75 {
        width: 75%;
    }
    .w66,
    m-flex.w66 {
        width: 66.666%;
    }
    .w50,
    m-flex.w50 {
        width: 50%;
    }
    .w33,
    m-flex.w33 {
        width: 33%;
    }
    .w25,
    m-flex.w25 {
        width: 25%;
    }
    m-flex.expand {
        flex: 1;
    }
    m-flex.disabled {
        opacity: .5 !important;
    }
    m-flex.absolute {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 100;
        background-color: #fff;
    }

    m-flex[data-type="row"] {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
        m-flex[data-type="row"].c {
            justify-content: center;
            align-items: center;
        }
        m-flex[data-type="row"].s {
            justify-content: flex-start;
            align-items: flex-start;
        }
        m-flex[data-type="row"].sC {
            justify-content: flex-start;
            align-items: center;
        }
        m-flex[data-type="row"].sB {
            justify-content: space-between;
        }
        m-flex[data-type="row"].sA {
            justify-content: space-around;
            flex-wrap: wrap;
        }
        m-flex[data-type="row"].e {
            justify-content: flex-end;
        }
        m-flex[data-type="row"].eA {
            align-items: flex-end;
        }
    m-flex[data-type="col"] {
        flex-direction: column;
        justify-content: center;    
    }
        m-flex[data-type="col"].c {
            justify-content: center;
            align-items: center;
        }
        m-flex[data-type="col"].s {
            justify-content: flex-start;
            align-items: flex-start;
        }
        m-flex[data-type="col"].sC {
            justify-content: center;
            align-items: flex-start;
        }
        m-flex[data-type="col"].e {
            align-items: flex-end;
        }
        
    m-flex.footer {
        padding: .5em;
        justify-content: flex-end;
    }
    .n,
    m-flex.n {
        padding: 0;
        margin: 0;
    }

    .pT,
    m-flex.pT {
        padding-top: 1em;
    }
    .pB,
    m-flex.pB {
        padding-bottom: 1em;
    }
    .pTB,
    m-flex.pTB {
        padding-top: 1em;
        padding-bottom: 1em;
    }
    .pL,
    m-flex.pL {
        padding-left: 1em;
    }
    .pR,
    m-flex.pR {
        padding-right: 1em;
    }
    .pLR,
    m-flex.pLR {
        padding-left: 1em;
        padding-right: 1em;
    }
    .mT,
    m-flex.mT {
        margin-top: 1em;
    }
    .mB,
    m-flex.mB {
        margin-bottom: 1em;
    }
    .mBHalf,
    m-flex.mBHalf {
        margin-bottom: .5em;
    }
    .mL,
    m-flex.mL {
        margin-left: 1em;
    }
    .mR,
    m-flex.mR {
        margin-right: 1em !important;
    }
    .mRQuickRetire {
        margin-right: 1.8em !important;
    }
    m-flex.wR {
        flex-wrap: wrap;
    }
    m-flex.bW {
        background-color: #FFF;
    }
    m-flex.sQ {
        width: 100%;
        min-width: 50px;
        max-width: 50px;
        height: 50px;
    }
        m-flex.primary {
            background-color: #B61E2E;
            color: #FFF;
        }
        m-flex.secondary {
            background-color: #FAFAFA;
        }
        m-flex.sQ:hover {
            cursor: pointer;
        }
        m-flex.xs {
            min-width: 25px;
            max-width: 25px;
            height: 25px;
            background-color: #EEE;
        }
            m-flex.xs i,
            m-flex.xs svg {
                width: 1.25em;
                height: 1.25em;
            }
        m-flex.sm {
            min-width: 40px;
            max-width: 40px;
            height: 40px;
        }
        m-flex.lg {
            min-width: 60px;
            max-width: 60px;
            height: 60px;
        }

    .tabs {
        background-color: #FFF;
        padding: 1em 2em;
    }
        .tabs .tab {
            padding: 0 1.35em;
            height: 35px;
            margin-right: 1em;
            font-size: .8em;
            border-radius: 2px;
            transition: all .35s;
        }
            .tabs .tab:hover {
                cursor: pointer;
                background-color: #f5f5f5;
            }
            .tabs .tab.active {
                background-color: #f5f5f5;
            }
            
    m-flex.tab {
        padding: 0 1em;
        height: 50px;
    }
        m-accordian m-flex.tab {
            border: 1px solid #EEE;
            border-radius: 2px;
            margin: 0 .25em;
        }
        m-flex.tab span {
            font-size: .7em;
            /*margin-left: .5em;*/
        }
    .tE,
    m-flex.tE {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    
    m-flex.container {
        max-width: 1000px;
        margin: 0 auto;
        justify-content: flex-start;
    }
        [aria-label="Primary"] > .container-sm,
        [aria-label="Primary"] > .container {
            min-height: 800px;
        }
    m-flex.container-sm {
        max-width: 600px;
        margin: 0 auto;
    }
    m-flex.container-xs {
        max-width: 400px;
        margin: 0 auto;
    }
    m-flex.h100 {
        height: 100%;
    }
    .bgCRed,
    m-flex.bgCRed {
        background-color: red;
        color: white;
    }

    .bgCGray,
    m-flex.bgCGray {
        background-color: #d9d9d9;
        color: black;
        font-weight: 600;
    }

m-flex.gray {
    background-color: #f7f7f7;
}

m-flex.grayRtr {
    background-color: #d9d9d9;
}

m-flex.cen {
    text-align: center;
}

m-flex.yellow {
    background-color: #fffa00;
}

/*--M-FLEX-------------------------------------------------------------------------------*/
/*--M-PREVIEW-------------------------------------------------------------------------------*/
.previewContanier {
    background-color: #EEE;
    border: 1px solid #EEE;
    margin: 0 auto 1em auto;
}
    .previewContanier m-preview {
        width: 600px;
        height: 600px;
        display: block;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
    }
/*--M-PREVIEW-------------------------------------------------------------------------------*/

/*--PAGER-------------------------------------------------------------------------------*/
m-pagenav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

m-pagenav m-previous,
m-pagenav m-next,
m-pagenav m-number {
    border: 1px solid #B61E2E;
    padding: .5em;
    font-size: .8em;
    margin: 0 .25em;
}

m-pagenav m-previous,
m-pagenav m-next {
    background-color: #B61E2E;
    color: #FFF;
    margin-bottom: 1em;
}
    m-pagenav m-previous:hover,
    m-pagenav m-next:hover {
        background-color: #FFF;
        color: #B61E2E;
        cursor: pointer;
    }

m-pagenav m-number {
    background-color: #FFF;
    color: #B61E2E;
    margin-bottom: 1em;
}
    m-pagenav m-number.active {
        background-color: #B61E2E;
        color: #FFF;
        border-color: #B61E2E;
    }

    m-pagenav m-number:hover {
        background-color: #B61E2E;
        color: #FFF;
        cursor: pointer;
    }
/*--PAGER-------------------------------------------------------------------------------*/

/*--M-UPDATE-------------------------------------------------------------------------------*/
m-update {
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    color: #424242;
}
/*--M-UPDATE-------------------------------------------------------------------------------*/

/*--M-CARD-------------------------------------------------------------------------------*/
m-card {
    border: 1px solid #EEE;
    background: #fff;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    /*max-width: 400px;*/
    min-height: 40px;
    transition: box-shadow 0.35s cubic-bezier(.25,.8,.25,1);
}   
    m-card.mB {
        margin-bottom: .5em;
    }
    m-card > m-flex.bL {
        border-left: 4px solid #B61E2E;
    }
    m-card.nB {
        border: 0;
    }
    m-card.load {
        background-color: #FFF;
        width: 100% !important;
        max-width: 100% !important;
    }
    m-card.isActive  {
        border: 1px solid #B61E2E;
    }
    m-card.isDeactive  {
        opacity: .9;
    }
    m-card.secondary {
        background-color: #EEE;
    }
    m-card.isPrimary {
        border: 1px solid #B61E2E;
        box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    }
        m-card h2 {
            font-size: .75em;
            margin: 0;
            color: #424242;
        }
            m-card.active[data-label="Settings Body"] h2,
            m-card.primary h2 {
                color: #FFF;
            }
        m-card p {
            font-size: .65em;
            margin: 0em;
            color: #424242;
            font-weight: 100;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }
        m-card span {
            margin: 0;
            color: #424242;
        }
    m-card.bI {
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
        m-card.bI .name {
            /*color: #FFF;*/
            font-weight: 400;
            font-size: 2em;
            text-align: center;
        }
        m-card.bI h1,
        m-card.bI h2,
        m-card.bI p {
            /*color: #FFF;*/
        }
        m-card.bI > m-flex {
            z-index: 10;
        }
        /*m-card.bI:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255,255,255,0.9);
            z-index: 1;
        }*/
            m-card.bI m-flex.bI {
                background-position: top center;
                background-size: cover;
                background-repeat: no-repeat;
                width: 100%;
                height: 250px;
                background-color: #ededed;
            }
        m-card.bI m-bar {
            margin: 0;
        }
        m-card.bI .info {
            width: 100%;
            margin: .5em .75em;
        }
            m-card.bI .info h1 {
                font-size: .8em;
                font-weight: 400;
            }
            m-card.bI .info h2 {
                font-size: .7em;
                font-weight: 100;
            }
            
    m-card.red i,
    m-card.red svg {
        fill: red;
    } 
    m-card.red .sQ {
        border: .5px solid red;
    }
    m-card.green i,
    m-card.green svg {
        fill: green;
    }
    m-card.green .sQ {
        border: .5px solid green;
    }

    m-card.abs {
        position: absolute;
        z-index: 100000;
        width: 300px;
        overflow: initial;
        border: none;
    }

        m-card.abs.left:after {
            content: '';
            position: absolute;
            top: -10px;
            left: 10px;
            z-index: 0;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid #FFF;
            filter: drop-shadow(0 -1px 1px rgba(0,0,0,.25));
        }

        m-card.abs.right:after {
            content: '';
            position: absolute;
            top: -10px;
            right: 10px;
            z-index: 0;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid #FFF;
            filter: drop-shadow(0 -1px 1px rgba(0,0,0,.25));
        }

    m-card.redeemCard {
        border: 2px solid red;
    }

    m-card.bagCard {
        border: 2px solid #3BB300;
    }

    .appBags m-card {
        overflow: hidden;
    }

m-card.sale {
    background-color: #3BB300;
}

m-card.redeem {
    background-color: red;
}

.spnLastSale {
    font-weight: 800;
    text-transform: uppercase;
    color: red;
}

/*--M-CARD-------------------------------------------------------------------------------*/

/*--LOADING-------------------------------------------------------------------------------*/
.loading {
    width: 100%;
    display: block;
    border-radius: 2px;
    color: transparent !important;
    background: rgb(221,221,221); /* Old browsers */
    background: -moz-linear-gradient(-45deg, rgba(221,221,221,1) 0%, rgba(238,238,238,1) 50%, rgba(221,221,221,1) 51%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(221,221,221,1) 0%,rgba(238,238,238,1) 50%,rgba(221,221,221,1) 51%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(221,221,221,1) 0%,rgba(238,238,238,1) 50%,rgba(221,221,221,1) 51%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background-size: 200% 200%;
    background-repeat: no-repeat;
    -webkit-animation: slide 3s infinite ease-in-out forwards;
    -moz-animation: slide 3s infinite ease-in-out forwards;
    animation: slide 3s infinite ease-in-out forwards;
}
m-button.loading {
    width: auto;
}
@-webkit-keyframes slide {
    0% { background-position: 100% 0; }
    50% { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}
@-moz-keyframes slide {
    0% { background-position: 100% 0; }
    50% { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}
@keyframes slide {
    0% { background-position: 100% 0; }
    50% { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}
/*--LOADING-------------------------------------------------------------------------------*/

/*--LIST-------------------------------------------------------------------------------*/
.list {
    background-color: #FFF;
}
.cards > h2,
.list > h2 {
    padding: 1em;
}
    .list m-card {
        border-left: none;
        border-right: none;
        border-top: 1px solid #EDEDED;
        border-bottom: none;
        border-radius: 0;
        margin-bottom: 0;
    }
        .list m-card:last-child {
            border-bottom: 1px solid #EDEDED;
            /*margin-bottom: 1em;*/
        }
        .list m-card.active {
            background-color: #EEE;
        }
        #lstTemplates m-card.active:after {
            content: 'SELECTED'; /* \2714 */
            color: #FFF;
            display: flex;
            text-align: center;
            font-size: 1.35em;
            letter-spacing: .5px;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,.35);
        }
        m-body[aria-label="Sub Manager Body"] #lstTemplates m-card.active:after {
            font-size: 1em;
        }
/*--LIST-------------------------------------------------------------------------------*/

/*--ICONS-------------------------------------------------------------------------------*/
.icons {

}
    .icons m-card {
        width: 24%;
        max-width: 24%;
        margin-right: .5%;
        margin-left: .5%;
    }
/*--ICONS-------------------------------------------------------------------------------*/

/*--M-INPUT-------------------------------------------------------------------------------*/
m-input {
    position: relative;
    width: 100%;
    margin-bottom: .5em;
}
    .settingsForm m-input {
        margin-bottom: 1em;
    }
    m-input.expand {
        flex: 1;
    }
    m-input.n {
        margin: 0;
        padding: 0;
    }
    m-input.pL {
        padding-left: 1em;
    }
    m-input.pR {
        padding-right: 1em;
    }
    m-input.red {
        border: 1px solid red;
    }
    m-input.green {
        border: 1px solid green;
    }

/*--M-INPUTS---------*/
m-inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-bottom: .5em;
}

m-inputs input {
    width: 50px;
    max-width: 50px;
    min-width: 50px;
    height: 65px;
    margin: 0px 5px;
    border-radius: 2px;
    background-color: #B61E2E;
    color: #FFF;
    font-size: 1em;
    text-align: center;
    -webkit-appearance: none;
}

    m-inputs input::-webkit-input-placeholder {
        color: #FFF;
    }
    m-inputs input[type=number]::-webkit-inner-spin-button,
    m-inputs input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
/*--M-INPUTS---------*/
/*--M-INPUT-------------------------------------------------------------------------------*/

/*--INPUT-------------------------------------------------------------------------------*/
textarea,
input {
    border: 1px solid #EEE;
    background-color: #FFF;
    width: 100%;
    max-width: 100%;
    height: 40px;
    outline: none;
    padding: 0 1em;
    font-size: .9em;
    border-radius: 2px;
    font-family: 'Open Sans', sans-serif;
}
m-module textarea,
m-module select,
m-module input {
    background-color: #f5f5f5;
}
    input:disabled {
        opacity: .35;
        background-color: #EEE;
    }
    textarea::-webkit-input-placeholder,
    m-input input::-webkit-input-placeholder {
        color: #AAA;
    }
    input[type="range"] {
        -webkit-appearance: none;
        width: 100%;
        height: 10px;
        border-radius: 5px;   
        background: #DDD;
        outline: none;
        padding: 0;
        opacity: 0.5;
        -webkit-transition: .2s;
        transition: opacity .2s;
    }
        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 15px;
            height: 15px;
            border-radius: 50%; 
            background: #B61E2E;
            cursor: pointer;
        }
        input[type="range"]::-moz-range-thumb {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #B61E2E;
            cursor: pointer;
        }
        input[type="range"]:hover {
            opacity: 1; /* Fully shown on mouse-over */
        }
    input[type="color"] {
        padding: 0;
    }
    input[type="radio"],
    input[type="checkbox"] {
        -webkit-appearance: none;
        width: 30px;
        height: 30px;
        margin: 0 0 0 0;
        position: relative;
    }
        input[type="radio"].sm:checked:after,
        input[type="checkbox"].sm:checked:after,
        input[type="radio"].sm:after,
        input[type="checkbox"].sm:after,
        input[type="radio"].sm,
        input[type="checkbox"].sm {
            width: 20px;
            min-width: 20px;
            height: 20px;
            min-height: 20px;
            padding: 0;
            font-size: 1em;
        }
    input[type="radio"]:after,
    input[type="checkbox"]:after {
        content: '\2713';
        color: #AAA;
        font-size: 1.5em;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 30px;
        height: 30px;
        border-radius: 2px;
        background: #EEE;
    }
    input[type="radio"]:checked:after,
    input[type="checkbox"]:checked:after {
        width: 30px;
        height: 30px;
        background-color: #B61E2E;
        color: #FFF;
    }
        input[type="radio"]:hover,
        input[type="checkbox"]:hover {
            cursor: pointer;
        }
    input.red {
        border: 2px solid red;
    }

textarea {
    height: 200px;
    display: block;
    outline: none;
    padding: .75em 1em;
    resize: none;
}
    textarea.lg {
        height: 500px;
    }

select {
    width: 100%;
    height: 40px;
    padding: 0 3em 0 1em;
    font-size: 1em;
    -webkit-appearance: none;
    border: 1px solid #EEE;
    background-color: #FFF;
    background-image:
        -webkit-linear-gradient(45deg, transparent 50%, gray 50%),
        -webkit-linear-gradient(315deg, gray 50%, transparent 50%),
        -webkit-linear-gradient(left, #ccc, #ccc);
    background-image:
        -o-linear-gradient(45deg, transparent 50%, gray 50%),
        -o-linear-gradient(315deg, gray 50%, transparent 50%),
        -o-linear-gradient(left, #ccc, #ccc);
    background-image:
        linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%),
        linear-gradient(to right, #ccc, #ccc);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px),
        calc(100% - 2.5em) 5px;
    background-size:
        5px 5px,
        5px 5px,
        1px 30px;
    background-repeat: no-repeat;
}
    select:hover {
        cursor: pointer;
    }
    select[multiple] {
        background-image: none;
        background-position: initial;
        background-size: initial;
        padding: 1em;
        height: 200px;
    }
/*--INPUT-------------------------------------------------------------------------------*/

/*--SWITCH-------------------------------------------------------------------------------*/
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    min-width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E6E3DD;
    -webkit-transition: .25s;
    transition: .25s;
    border-radius: 34px;
}

    .slider.inverse {
        background-color: #FFF;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .25s;
        transition: .25s;
        border-radius: 50%;
    }

    .slider.inverse:before {
        background-color: #E6E3DD;
    }

input:checked + .slider {
    background-color: #B61E2E;
}

input:focus + .slider {
    box-shadow: 0 0 1px #B61E2E;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
/*--SWITCH-------------------------------------------------------------------------------*/

/*--LABEL-------------------------------------------------------------------------------*/
label {
    font-size: .9em;
    padding: 0;
    width: 100%;
    max-width: 100%;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 400;
    color: #888;
    cursor: text;
    transition: all .2s ease-out;
}
    label.c {
        text-align: center;
    }

    m-body[aria-label="Accounting"] label {
        font-size: .75em;
    }

label.rtrLabel {
    font-weight: 400;
    color: black;
}
/*--LABEL-------------------------------------------------------------------------------*/

/*--DEPTH-------------------------------------------------------------------------------*/
.d1 {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.d2 {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.d3 {
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.d4 {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.d5 {
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
/*--DEPTH-------------------------------------------------------------------------------*/

/*--M-SCRIM-------------------------------------------------------------------------------*/
m-scrim {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1000;
    -webkit-transition: background-color .35s;
    -o-transition: background-color .35s;
    transition: background-color .35s;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; /* Chrome and Safari */
    -moz-backface-visibility: hidden; /* Firefox */
}
/*--M-SCRIM-------------------------------------------------------------------------------*/

/*--M-MODULE-------------------------------------------------------------------------------*/
m-module {
    position: fixed;
    top: 0;
    display: none;
    width: 90%;
    height: calc(100% - 40px);
    top: 20px;
    left: 20px;
    border-radius: 6px;
    background-color: #FFF;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 10000;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; /* Chrome and Safari */
    -moz-backface-visibility: hidden; /* Firefox */
}
    m-module.w {
        width: 100vw;
        min-width: 100vw;
        max-width: 100vw;
        top: 0px;
        left: 0px;
        border-radius: 0px;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }
    m-module.sm {
        width: 300px;
        min-width: 300px;
        max-width: 300px;
    }
    m-module > m-header {
        justify-content: space-between;
    }
    m-module > m-body {
        padding: 60px 0 0 0;
    }
    m-module[data-position="left"] {
        left: 0;
    }
    m-module[data-position="right"] {
        right: 0;
    }
/*--M-MODULE-------------------------------------------------------------------------------*/

/*--M-BODY-------------------------------------------------------------------------------*/
m-body {
    padding: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    position: absolute;
    /* overflow: scroll; */
    /* overflow-y: scroll; Taken out for image dropping*/
    /* overflow-x: hidden; */
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    z-index: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}
    m-body[aria-label="Manager Body"] {
        /* overflow-y: visible; */
        /* overflow-x: visible; */
        /* overflow: visible; */
        border-right: 1px solid #dcdee1;
    }
    m-body[aria-label="Settings Body"] {
        position: initial;
    }
    m-body[aria-label="Sub Manager Body"] {
        overflow: scroll;
    }
    m-body[aria-label="Primary"] {
        padding-left: 175px !important;
        transition: padding-left .25s;
        overflow: scroll;
    }
    m-body[aria-label="Primary"].minimized {
        padding-left: 42px !important;
    }
        m-body[aria-label="Primary"] .bodyTitle {
            padding: 4em 2em .5em 2em;
            background-color: #FFF;
        }
            m-body[aria-label="Primary"] .bodyTitle h1 {
                font-size: 2em;
                color: #B61E2E;
            }
/*--M-BODY-------------------------------------------------------------------------------*/

/*--M-HEADER-------------------------------------------------------------------------------*/
m-header {
    width: 100%;
    height: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #B61E2E;
    z-index: 100;
}
    m-header .sQ,
    m-header .tab {
        color: #FFF;
    }
        .tab.btnOpenOrderItemPreview.active,
        m-header .tab.active {
            background-color: rgba(0,0,0,.05);
        }

    .sticky {
        position: sticky;
        top: 0;
        z-index: 12000;
        background-color: white;
    }
/*--M-HEADER-------------------------------------------------------------------------------*/

/*--M-ERROR-------------------------------------------------------------------------------*/
m-error {
    color: red;
    font-size: .75em;
    margin-bottom: .5em;
}
/*--M-ERROR-------------------------------------------------------------------------------*/

/*--M-NOTIFICATION-------------------------------------------------------------------------------*/
m-notification {
    width: 100%;
    padding: .75em;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 1;
    z-index: 90000;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    border: 1px solid #ddd;
    background-color: #fff;
    -webkit-animation: notification 1000ms linear both;
    animation: notification 1000ms linear both;
    transition: all .5s;
    -webkit-transition: all .5s;
}
    m-notification.lg {
        max-width: 600px;
        right: calc(50% - 300px);
        min-height: 200px;
        bottom: calc(50% - 100px);
        top: calc(50% - 200px);
        max-height: 400px;
        overflow: scroll;
    }
m-notification.success h1 {
    color: green;
}
m-notification.error h1 {
    color: red;
}
m-notification h1 {
    font-size: 1em;
    margin: 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
}
    m-notification h1 i:hover {
        cursor: pointer;    
    }
m-notification p {
    margin: .5em 0 0 0;
    font-size: .8em;
}

@-webkit-keyframes notification { 
  0% { -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% { -webkit-transform: matrix3d(0.316, 0, 0, 0, 0, 0.407, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.316, 0, 0, 0, 0, 0.407, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  4.7% { -webkit-transform: matrix3d(0.45, 0, 0, 0, 0, 0.599, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.45, 0, 0, 0, 0, 0.599, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.81% { -webkit-transform: matrix3d(0.659, 0, 0, 0, 0, 0.893, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.659, 0, 0, 0, 0, 0.893, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  9.41% { -webkit-transform: matrix3d(0.883, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.883, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  10.21% { -webkit-transform: matrix3d(0.942, 0, 0, 0, 0, 1.226, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.942, 0, 0, 0, 0, 1.226, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  13.61% { -webkit-transform: matrix3d(1.123, 0, 0, 0, 0, 1.332, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.123, 0, 0, 0, 0, 1.332, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  14.11% { -webkit-transform: matrix3d(1.141, 0, 0, 0, 0, 1.331, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.141, 0, 0, 0, 0, 1.331, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  17.52% { -webkit-transform: matrix3d(1.208, 0, 0, 0, 0, 1.239, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.208, 0, 0, 0, 0, 1.239, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  18.72% { -webkit-transform: matrix3d(1.212, 0, 0, 0, 0, 1.187, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.212, 0, 0, 0, 0, 1.187, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  21.32% { -webkit-transform: matrix3d(1.196, 0, 0, 0, 0, 1.069, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.196, 0, 0, 0, 0, 1.069, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  24.32% { -webkit-transform: matrix3d(1.151, 0, 0, 0, 0, 0.96, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.151, 0, 0, 0, 0, 0.96, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.23% { -webkit-transform: matrix3d(1.134, 0, 0, 0, 0, 0.938, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.134, 0, 0, 0, 0, 0.938, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.03% { -webkit-transform: matrix3d(1.063, 0, 0, 0, 0, 0.897, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.063, 0, 0, 0, 0, 0.897, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.93% { -webkit-transform: matrix3d(1.048, 0, 0, 0, 0, 0.899, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.048, 0, 0, 0, 0, 0.899, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  35.54% { -webkit-transform: matrix3d(0.979, 0, 0, 0, 0, 0.962, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.979, 0, 0, 0, 0, 0.962, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  36.74% { -webkit-transform: matrix3d(0.972, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.972, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  41.04% { -webkit-transform: matrix3d(0.961, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.961, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  44.44% { -webkit-transform: matrix3d(0.966, 0, 0, 0, 0, 1.032, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.966, 0, 0, 0, 0, 1.032, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  52.15% { -webkit-transform: matrix3d(0.991, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.991, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  59.86% { -webkit-transform: matrix3d(1.006, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.006, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  63.26% { -webkit-transform: matrix3d(1.007, 0, 0, 0, 0, 0.992, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.007, 0, 0, 0, 0, 0.992, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.28% { -webkit-transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.49% { -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  90.69% { -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } 
}

@keyframes notification { 
  0% { -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% { -webkit-transform: matrix3d(0.316, 0, 0, 0, 0, 0.407, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.316, 0, 0, 0, 0, 0.407, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  4.7% { -webkit-transform: matrix3d(0.45, 0, 0, 0, 0, 0.599, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.45, 0, 0, 0, 0, 0.599, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.81% { -webkit-transform: matrix3d(0.659, 0, 0, 0, 0, 0.893, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.659, 0, 0, 0, 0, 0.893, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  9.41% { -webkit-transform: matrix3d(0.883, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.883, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  10.21% { -webkit-transform: matrix3d(0.942, 0, 0, 0, 0, 1.226, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.942, 0, 0, 0, 0, 1.226, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  13.61% { -webkit-transform: matrix3d(1.123, 0, 0, 0, 0, 1.332, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.123, 0, 0, 0, 0, 1.332, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  14.11% { -webkit-transform: matrix3d(1.141, 0, 0, 0, 0, 1.331, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.141, 0, 0, 0, 0, 1.331, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  17.52% { -webkit-transform: matrix3d(1.208, 0, 0, 0, 0, 1.239, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.208, 0, 0, 0, 0, 1.239, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  18.72% { -webkit-transform: matrix3d(1.212, 0, 0, 0, 0, 1.187, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.212, 0, 0, 0, 0, 1.187, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  21.32% { -webkit-transform: matrix3d(1.196, 0, 0, 0, 0, 1.069, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.196, 0, 0, 0, 0, 1.069, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  24.32% { -webkit-transform: matrix3d(1.151, 0, 0, 0, 0, 0.96, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.151, 0, 0, 0, 0, 0.96, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.23% { -webkit-transform: matrix3d(1.134, 0, 0, 0, 0, 0.938, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.134, 0, 0, 0, 0, 0.938, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.03% { -webkit-transform: matrix3d(1.063, 0, 0, 0, 0, 0.897, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.063, 0, 0, 0, 0, 0.897, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.93% { -webkit-transform: matrix3d(1.048, 0, 0, 0, 0, 0.899, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.048, 0, 0, 0, 0, 0.899, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  35.54% { -webkit-transform: matrix3d(0.979, 0, 0, 0, 0, 0.962, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.979, 0, 0, 0, 0, 0.962, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  36.74% { -webkit-transform: matrix3d(0.972, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.972, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  41.04% { -webkit-transform: matrix3d(0.961, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.961, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  44.44% { -webkit-transform: matrix3d(0.966, 0, 0, 0, 0, 1.032, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.966, 0, 0, 0, 0, 1.032, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  52.15% { -webkit-transform: matrix3d(0.991, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.991, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  59.86% { -webkit-transform: matrix3d(1.006, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.006, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  63.26% { -webkit-transform: matrix3d(1.007, 0, 0, 0, 0, 0.992, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.007, 0, 0, 0, 0, 0.992, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.28% { -webkit-transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.49% { -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  90.69% { -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } 
}
/*--M-NOTIFICATION-------------------------------------------------------------------------------*/

.icon-expand-arrow,
.icon-find-user-male,
.icon-checked-user-male,
.icon-user,
.icon-gender-neutral-user,
.icon-checkmark,
.icon-filter,
.icon-search,
.icon-microphone,
.icon-calendar,
.icon-settings,
.icon-move,
.icon-plus,
.icon-edit,
.icon-trash,
.icon-cancel,
.icon-drag-reorder,
.icon-alphabetical-sorting,
.icon-numerical-sorting-12,
.icon-alphabetical-sorting-2,
.icon-numerical-sorting-21,
.icon-tags,
.icon-more,
.icon-info,
.icon-group-background-selected,
.icon-group-foreground-selected,
.icon-conference-background-selected,
.icon-conference-call,
.icon-lock,
.icon-unlock,
.icon-topic,
.icon-chat,
.icon-ask-question,
.icon-speech-bubble-with-dots,
.icon-sms,
.icon-response,
.icon-video-message,
.icon-quote,
.icon-moved-topic,
.icon-my-topic,
.icon-mms,
.icon-delete-message,
.icon-popular-topic,
.icon-copy,
.icon-exit,
.icon-request-service,
.icon-checked-checkbox,
.icon-view-file,
.icon-submit-progress,
.icon-in-progress,
.icon-clipboard,
.icon-inspection,
.icon-paste,
.icon-copy-2,
.icon-save,
.icon-cut,
.icon-tasks,
.icon-download,
.icon-file,
.icon-edit-file,
.icon-image-file,
.icon-video-file,
.icon-overview-pages-4,
.icon-overview-pages-1,
.icon-activity-feed,
.icon-attach,
.icon-high-priority,
.icon-ticket,
.icon-certificate,
.icon-future,
.icon-plus-math,
.icon-minus-math,
.icon-back,
.icon-forward,
.icon-collapse-arrow,
.icon-empty-flag,
.icon-refund-2,
.icon-product,
.icon-shopping-cart,
.icon-route-sign,
.icon-commercial-development-management,
.icon-login-rounded-up,
.icon-logout-rounded-down,
.icon-scales,
.icon-combo-chart,
.icon-keypad,
.icon-keyboard,
.icon-link,
.icon-calendar-2,
.icon-clock {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    fill: currentColor;
    vertical-align: -0.1em;
}

    .icon-expand-arrow > svg,
    .icon-find-user-male > svg,
    .icon-checked-user-male > svg,
    .icon-user > svg,
    .icon-gender-neutral-user > svg,
    .icon-checkmark > svg,
    .icon-filter > svg,
    .icon-search > svg,
    .icon-microphone > svg,
    .icon-calendar > svg,
    .icon-settings > svg,
    .icon-move > svg,
    .icon-plus > svg,
    .icon-edit > svg,
    .icon-trash > svg,
    .icon-cancel > svg,
    .icon-drag-reorder > svg,
    .icon-alphabetical-sorting > svg,
    .icon-numerical-sorting-12 > svg,
    .icon-alphabetical-sorting-2 > svg,
    .icon-numerical-sorting-21 > svg,
    .icon-tags > svg,
    .icon-more > svg,
    .icon-info > svg,
    .icon-group-background-selected > svg,
    .icon-group-foreground-selected > svg,
    .icon-conference-background-selected > svg,
    .icon-conference-call > svg,
    .icon-lock > svg,
    .icon-unlock > svg,
    .icon-topic > svg,
    .icon-chat > svg,
    .icon-ask-question > svg,
    .icon-speech-bubble-with-dots > svg,
    .icon-sms > svg,
    .icon-response > svg,
    .icon-video-message > svg,
    .icon-quote > svg,
    .icon-moved-topic > svg,
    .icon-my-topic > svg,
    .icon-mms > svg,
    .icon-delete-message > svg,
    .icon-popular-topic > svg,
    .icon-copy > svg,
    .icon-exit > svg,
    .icon-request-service > svg,
    .icon-checked-checkbox > svg,
    .icon-view-file > svg,
    .icon-submit-progress > svg,
    .icon-in-progress > svg,
    .icon-clipboard > svg,
    .icon-inspection > svg,
    .icon-paste > svg,
    .icon-copy-2 > svg,
    .icon-save > svg,
    .icon-cut > svg,
    .icon-tasks > svg,
    .icon-download > svg,
    .icon-file > svg,
    .icon-edit-file > svg,
    .icon-image-file > svg,
    .icon-video-file > svg,
    .icon-overview-pages-4 > svg,
    .icon-overview-pages-1 > svg,
    .icon-activity-feed > svg,
    .icon-attach > svg,
    .icon-high-priority > svg,
    .icon-ticket > svg,
    .icon-certificate > svg,
    .icon-future > svg,
    .icon-plus-math > svg,
    .icon-minus-math > svg,
    .icon-back > svg,
    .icon-forward > svg,
    .icon-collapse-arrow > svg,
    .icon-empty-flag > svg,
    .icon-refund-2 > svg,
    .icon-product > svg,
    .icon-shopping-cart > svg,
    .icon-route-sign > svg,
    .icon-commercial-development-management > svg,
    .icon-login-rounded-up > svg,
    .icon-logout-rounded-down > svg,
    .icon-scales > svg,
    .icon-combo-chart > svg,
    .icon-keypad > svg,
    .icon-keyboard > svg,
    .icon-link > svg,
    .icon-calendar-2 > svg,
    .icon-clock > svg {
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        fill: currentColor;
        vertical-align: -0.1em;
    }

