@import url('https://fonts.googleapis.com/css?family=Roboto|Titillium+Web:400,700');

body {
    background-color: #F7F8F0;
}

h1 {
    font-size: 2em;
    margin: 0 0 .35em 0;
    font-family: 'Titillium Web', serif;
}
h2 {
    font-size: 1.35em;
    font-weight: 800;
    color: #606161;
    margin: 0 0 .1em 0;
    font-family: 'Titillium Web', serif;
}
h5 {
    font-size: .9em;
    font-weight: 100;
}
h6 {
    font-size: 1.25em;
    margin: 0 0 2em 0;
    color: #0075A3;
}

img {
    width: 100%;
}

p {
    font-size: .85em;
    font-weight: 100;
}
    p.sm {
        font-size: .8em;
        line-height: 1.5em;
    }

span.blue {
    color: #0075A3;
    font-weight: 800;
}

.container {
    width: auto;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
}
    .container.lg {
        width: auto;
    }

a {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    background-color: #00AEEF;
    color: #FFF;
    border: 1px solid #00AEEF;
    margin-bottom: 1em;
    padding: 1em;
    font-size: 1.5em;
    text-decoration: none;
    border-radius: 2px;
}
    a:hover {
        cursor: pointer;
        background-color: #FFF;
        color: #00AEEF;
    }
    a.n {
        width: initial;
        display: initial;
        background-color: initial;
        color: initial;
        border: initial;
        margin-bottom: initial;
        padding: initial;
        font-size: initial;
        text-decoration: initial;
        border-radius: initial;
    }

m-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 50%;
}
    m-image.round {
        background-image: url(/Content/Images/jacob.jpg);
        border-radius: 50%;
        width: 50%;
        margin: 0 0 1em 0;
    }
    m-image.sQ {
        padding-bottom: 100%;
    }
    m-image.contain {
        padding-bottom: 70%;
        background-size: contain;
    }

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-button[data-type="primary"] {
        background-color: #0075A3;
        color: #FFF;
    }
    m-button[data-type="secondary"] {
        background-color: #FFF;
        color: #424242;
        border: 1px solid #EEE;
    }
    m-button[data-type="tertiary"] {
        background-color: transparent;
        color: #424242;
    }
        m-button:hover {
            cursor: pointer;
        }

/*--M-FLEX-------------------------------------------------------------------------------*/
m-flex {
    display: flex;
    padding: 1em;
    position: relative;
}
    .w,
    m-flex.w {
        width: 100%;
    }
    .w75,
    m-flex.w75 {
        width: 75%;
    }
    .w70,
    m-flex.w70 {
        width: 70%;
    }
    .w60,
    m-flex.w60 {
        width: 60%;
    }
    .w50,
    m-flex.w50 {
        width: 50%;
    }
    .w33,
    m-flex.w33 {
        width: 33%;
    }
    .w30,
    m-flex.w30 {
        width: 30%;
    }
    .w25,
    m-flex.w25 {
        width: 25%;
    }
    .w20,
    m-flex.w20 {
        width: 20%;
    }
    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"].u {
            align-items: unset;
        }
        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.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;
    }
    .mL,
    m-flex.mL {
        margin-left: 1em;
    }
    .mR,
    m-flex.mR {
        margin-right: 1em !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;
        border-radius: 50%;
        border: 1px solid #0075A3;
        transition: all .35s;
    }
        m-flex.sQ:hover {
            background-color: #0075A3;
        }
        m-flex.sQ:hover svg {
            fill: #FFF;
        }
        m-flex.primary {
            background-color: #0075A3;
            color: #FFF;
        }
        m-flex.secondary {
            background-color: #FFF;
            color: #0075A3;
        }
        m-flex.tertiary {
            background-color: transparent !important;
            color: #0075A3;
        }
        m-flex.sQ:hover {
            cursor: pointer;
        }
        m-flex.xs {
            min-width: 20px;
            max-width: 20px;
            height: 20px;
            background-color: #EEE;
        }
            m-flex.xs i,
            m-flex.xs svg {
                width: 1.1em;
                height: 1.1em;
            }
        m-flex.sm {
            min-width: 40px;
            max-width: 40px;
            height: 40px;
        }
        m-flex.lg {
            min-width: 60px;
            max-width: 60px;
            height: 60px;
        }
    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.red {
        background-color: red !important;
        border-radius: 2px;
    }
    m-flex.red i,
    m-flex.red svg {
        color: white;
        fill: white;
    }
    
    m-flex.container {
        max-width: 1200px;
        margin: 0 auto;
        justify-content: flex-start;
    }
        [data-label="Primary"] > .container-sm,
        [data-label="Primary"] > .container {
            min-height: 800px;
            height: auto;
        }
    m-flex.container-sm {
        max-width: 600px;
        margin: 0 auto;
    }
    m-flex.container-md {
        margin: 0 auto;
        max-width: 900px;
    }
/*--M-FLEX-------------------------------------------------------------------------------*/

/*--M-ICON-------------------------------------------------------------------------------*/
m-icon {
    width: 50px;
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    background-color: #F2871C;
    color: #FFF;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
}
/*--M-ICON-------------------------------------------------------------------------------*/

/*--M-CARD-------------------------------------------------------------------------------*/
m-card {
    border: .5px 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);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}   
    m-card.h:hover {
        cursor: pointer;
        box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    }
    .cards m-card {
        width: 100%;
        margin-bottom: 2%;
    }
    m-card.mB {
        margin-bottom: .5em;
    }
    m-card.load {
        background-color: #FFF;
        width: 100% !important;
        max-width: 100% !important;
    }
    m-card.secondary {
        background-color: #EEE;
    }
    m-card.isPrimary {
        border: 1px solid #F2871C;
        box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    }
    m-card h2 {
        margin-bottom: 0;
        font-size: 1em;
    }
/*--M-CARD-------------------------------------------------------------------------------*/

/*--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: 10%;
    left: 25%;
    display: none;
    width: 50%;
    height: auto;
    background-color: #FFF;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* overflow-y: scroll; */
    border-radius: 3px;
    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;
    }
    m-module.w500 {
        min-width: 500px;
        max-width: 500px;
    }
    m-module > m-header {
        justify-content: space-between;
    }
    m-module > m-body {
        /* padding: 60px 0 0 0; */
        overflow-y: hidden;
        position: initial;
    }
    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-y: 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-module m-body label {
        width: auto;
    }
/*--M-BODY-------------------------------------------------------------------------------*/

/*--M-HEADER-------------------------------------------------------------------------------*/
m-header {
    width: 100%;
    height: 60px;
    min-height: 60px;
    padding-right: 1em;
    padding-left: 1em;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #FFF;
    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);
        }
/*--M-HEADER-------------------------------------------------------------------------------*/
/*--M-INPUT-------------------------------------------------------------------------------*/
m-input {
    position: relative;
    width: 100%;
    margin-bottom: .5em;
}

    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: #00AEEF;
        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;
}

    input:disabled {
        opacity: .35;
        background-color: #EEE;
    }

    textarea::-webkit-input-placeholder,
    m-input input::-webkit-input-placeholder {
        color: #CCC;
    }

    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: #00AEEF;
            cursor: pointer;
        }

        input[type="range"]::-moz-range-thumb {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #00AEEF;
            cursor: pointer;
        }

        input[type="range"]:disabled::-moz-range-thumb,
        input[type="range"]:disabled::-webkit-slider-thumb {
            opacity: .35;
            background: #EEE;
        }

        input[type="range"]:hover {
            opacity: 1; /* Fully shown on mouse-over */
        }

        input[type="range"]:disabled:hover {
            opacity: .5; /* Fully shown on mouse-over */
            cursor: not-allowed;
        }

    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: '';
            color: #AAA;
            font-size: 1.5em;
            display: flex;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            border-radius: 2px;
            background: #e8e8e8;
            border: 1px solid #CCC;
        }

        input[type="radio"]:checked:after,
        input[type="checkbox"]:checked:after {
            content: '\2713';
            width: 30px;
            height: 30px;
            background-color: #00AEEF;
            color: #FFF;
            border: 1px solid #00AEEF;
        }

        input[type="radio"]:hover,
        input[type="checkbox"]:hover {
            cursor: pointer;
        }

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-------------------------------------------------------------------------------*/

/*--LABEL-------------------------------------------------------------------------------*/
label {
    font-size: .75em;
    padding: 0;
    width: 100%;
    max-width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 100;
    color: #AAA;
    cursor: text;
}

    label.c {
        text-align: center;
    }
/*--LABEL-------------------------------------------------------------------------------*/

/*--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.success h1,
    m-notification.success h1 span {
        color: green !important;
    }

    m-notification.error h1,
    m-notification.error h1 span {
        color: red !important;
    }

    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-resume,
.icon-cv,
.icon-download,
.icon-search-button,
.icon-project,
.icon-brief,
.icon-info,
.icon-close-button,
.icon-add,
.icon-link,
.icon-image,
.icon-image-2,
.icon-image-3,
.icon-location-marker,
.icon-position,
.icon-more,
.icon-expand,
.icon-full-screen,
.icon-enlarge,
.icon-back,
.icon-forward {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    fill: #0075A3;
    vertical-align: -0.1em;
}

.icon-resume > svg,
.icon-cv > svg,
.icon-download > svg,
.icon-search-button > svg,
.icon-project > svg,
.icon-brief > svg,
.icon-info > svg,
.icon-close-button > svg,
.icon-add > svg,
.icon-link > svg,
.icon-image > svg,
.icon-image-2 > svg,
.icon-image-3 > svg,
.icon-location-marker > svg,
.icon-position > svg,
.icon-more > svg,
.icon-expand > svg,
.icon-full-screen > svg,
.icon-enlarge > svg,
.icon-back > svg,
.icon-forward > svg {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    fill: #0075A3;
    vertical-align: -0.1em;
}

