/***** Desktop Styles *****/
.dashboardGreenBar {
    width: 100%;
    height: 50px;
    background-color: #6E6E6E;
    /*#98c93d;*/
    position: relative;
    z-index: 3;
    -webkit-box-shadow: 0px 8px 10px 0px rgba(50, 50, 50, 0.35);
    -moz-box-shadow: 0px 8px 10px 0px rgba(50, 50, 50, 0.35);
    box-shadow: 0px 8px 10px 0px rgba(50, 50, 50, 0.35);
}

/***** NOTE FOR RESPONSIVE HAMBURGER MENU 
    to set up menu for media breaks copy Sub Nav Styles and Responsive Hamburger Menu styles and put under media query
*****/

/***** SUB NAV STYLES *****/
.dashboardSubNavContainer {
    float: left;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.dashboardSubNavContainer :last-child {
    border-right: none;
}

.dashboardSubNavLinkContainer {
    text-align: center;
    border-right: solid 1px #fff;
    cursor: pointer;
}

/***** NAVIGATION STYLES *****/
.nav-collapse,
.nav-collapse * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.nav-collapse,
.nav-collapse ul {
    list-style: none;
    width: 100%;
    float: left;
    background-color: #6E6E6E;
    /*#98c93d;*/
    margin: 0;
}

.nav-collapse li a {
    text-align: center;
    border-top: 0;
    float: left;
    margin: 0;
    color: #fff;
    font-size: 1.8em;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    line-height: .8;
}

.nav-collapse li a:hover {
    text-decoration: underline;
}

.nav-collapse a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    border-top: 1px solid white;
    text-decoration: none;
    background: transparent;
    padding: 0.5em 1em;
    color: #fff;
    width: 100%;
    float: left;
}

.nav-collapse ul ul a {
    background: #79a030;
    padding-left: 2em;
}

@media screen and (min-width: 40em) {

    /* original was 40em*/
    .nav-collapse ul ul a {
        display: none;
    }
}

a:active,
a:hover {
    outline: 0;
}

@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

/***** RESPONSIVE NAV STYLES *****/
.nav-collapse ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    list-style: none;
    justify-content: center;
}

.nav-collapse li {
    border-right: solid 1px #fff;
    cursor: pointer;
    height: 49px;
}

.js .nav-collapse {
    clip: rect(0 0 0 0);
    max-height: 0;
    position: absolute;
    display: block;
    zoom: 1;
}

.nav-collapse.opened {
    max-height: 9999px;
}

.disable-pointer-events {
    pointer-events: none !important;
}

.nav-toggle {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

/** Improtant!: Do not change or will not work on desktop/laptop - original was 40em **/
@media screen and (min-width: 769px) {
    .js .nav-collapse {
        position: relative;
    }

    .js .nav-collapse.closed {
        max-height: none;
    }

    .nav-toggle {
        display: none;
    }

    .mask {
        display: none !important;
        opacity: 0 !important;
    }
}

/******* MASK *******/
.mask {
    -webkit-transition: opacity 300ms;
    -moz-transition: opacity 300ms;
    transition: opacity 300ms;
    background: rgba(0, 0, 0, .5);
    visibility: hidden;
    position: fixed;
    opacity: 0;
    z-index: 2;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}

.android .mask {
    -webkit-transition: none;
    transition: none;
}

.js-nav-active .mask {
    visibility: visible;
    opacity: 1;
}

/******* NAV TOGGLE STYLES *******/
@font-face {
    font-family: "responsivenav";
    src: url("../icons/responsivenav.eot");
    src: url("../icons/responsivenav.eot?#iefix") format("embedded-opentype"),
        url("../icons/responsivenav.ttf") format("truetype"),
        url("../icons/responsivenav.woff") format("woff"),
        url("../icons/responsivenav.svg#responsivenav") format("svg");
    font-weight: normal;
    font-style: normal;
}

.nav-toggle {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;
    text-indent: -300px;
    position: relative;
    overflow: hidden;
    width: 60px;
    height: 55px;
    float: left;
}

.nav-toggle:before {
    color: #fff;
    /* Edit this to change the icon color */
    font: normal 4em/55px "responsivenav";
    /* Edit font-size (28px) to change the icon size */
    text-transform: none;
    text-align: center;
    position: absolute;
    content: "\2261";
    /* Hamburger icon */
    text-indent: 0;
    width: 100%;
    left: 0;
    top: 0;
    line-height: .75;
}

.nav-toggle.active:before {
    font-size: 3em;
    content: "\78";
    /* Close icon */
    line-height: 1;
}

/***** MOJO CIRCLE *****/
.dashboardMOJOCircle {
    position: absolute;
    z-index: 10;
    margin: .5% 4% 0 3%;
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 50%;
    border: solid 6px #779F2D;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
    -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
    box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
}

.dashboardMOJOCirclePoints {
    width: 100%;
    margin-top: 5%;
    padding: 0;
    text-align: center;
    z-index: 999;
    position: absolute;
    cursor: pointer;
}

.dashboardMOJOCirclePoints a {
    font-family: 'Monda', sans-serif;
    font-weight: bold;
    font-size: 4em;
    color: #779F2D;
    text-decoration: none;
}

.dashboardMOJOCircleText {
    width: 80%;
    margin: 52% auto 0;
    line-height: 1;
    text-align: center;
    z-index: 999;
    cursor: pointer;
}

.dashboardMOJOCircleText a {
    font-family: myriad-pro, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.8em;
    color: #16505f;
    text-decoration: none;
}

/***** Phone: Portrait *****/
@media (min-width: 320px) and (max-width: 736px) and (orientation: portrait) {
    .dashboardLogoContainer {
        width: 90%;
        margin: 0 auto;
        padding: 4% 0;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

    .dashboardLogoContainer img {
        width: 100%;
    }

    /***** SUB NAV STYLES *****/
    .nav-collapse {
        float: left;
        width: 100%;
        margin: 0;
    }

    .nav-collapse ul {
        margin: -1% 0 0 0;
        padding: 0;
        width: 100%;
        display: block;
        list-style: none;
    }

    .dashboardSubNavContainer {
        float: left;
        margin: 0;
        width: 100%;
        height: 30px;
        display: flex;
        justify-content: space-evenly;
        border-right: none;
        display: block;
    }

    .dashboardSubNavLinkContainer {
        padding-right: 4%;
        text-align: center;
        cursor: pointer;
    }

    /****** Responsive Hamburger Menu ******/
    .nav-toggle {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-decoration: none;
        text-indent: -300px;
        position: relative;
        overflow: hidden;
        width: 60px;
        height: 55px;
        float: left;
        margin-top: -.5%;
    }

    .nav-collapse li {
        width: 100%;
        display: block;
        padding-right: 4%;
        text-align: center;
        border-top: solid 1px #fff;
        cursor: pointer;
        height: 49px;
    }

    .nav-collapse li a {
        text-align: left;
        border-top: 0;
        float: left;
        margin: 0;
        color: #fff;
        font-size: 1.5em;
        font-weight: 400;
        text-transform: uppercase;
        text-decoration: none;
        line-height: .8;
    }

    .nav-collapse a {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        border-top: 1px solid white;
        text-decoration: none;
        background: transparent;
        padding: 0.7em 1em;
        color: #fff;
        width: 100%;
        float: left;
    }

    /***** MOJO CIRCLE *****/
    .dashboardMOJOCircle {
        position: absolute;
        z-index: 10;
        margin: 0 4% 0 3%;
        width: 60px;
        height: 60px;
        background-color: #fff;
        border-radius: 50%;
        border: solid 3px #779F2D;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
    }

    .dashboardMOJOCirclePoints {
        width: 100%;
        margin-top: -2%;
        padding: 0;
        text-align: center;
        z-index: 999;
        position: absolute;
        cursor: pointer;
    }

    .dashboardMOJOCirclePoints a {
        font-family: 'Monda', sans-serif;
        font-weight: 700;
        font-size:1.6em;
        color: #779F2D;
        text-decoration: none;
    }

    .dashboardMOJOCircleText {
        width: 80%;
        margin: 44% auto 0;
        line-height: 1;
        text-align: center;
        position: relative;
        z-index: 999;
        cursor: pointer;
    }

    .dashboardMOJOCircleText a {
        font-family: myriad-pro, sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        font-size: .9em;
        color: #16505f;
        text-decoration: none;
    }
}

/***** Phones: Landscape *****/
@media only screen and (min-width: 375px) and (max-width: 897px) and (orientation: landscape) {
    .dashboardLogoContainer {
        width: 100%;
        padding: 1% 0;
        overflow: hidden;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .dashboardLogoContainer img {
        width: 30%;
    }

    /***** SUB NAV STYLES *****/
    .nav-collapse {
        float: left;
        width: 100%;
        margin: 0;
    }

    .nav-collapse ul {
        margin: -1% 0 0 0;
        padding: 0;
        width: 100%;
        display: block;
        list-style: none;
    }

    .dashboardSubNavContainer {
        float: left;
        margin: 0;
        width: 100%;
        height: 30px;
        display: flex;
        justify-content: space-evenly;
        border-right: none;
        display: block;
    }

    .dashboardSubNavLinkContainer {
        padding-right: 4%;
        text-align: center;
        cursor: pointer;
    }

    /****** Responsive Hamburger Menu ******/
    .nav-toggle {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-decoration: none;
        text-indent: -300px;
        position: relative;
        overflow: hidden;
        width: 60px;
        height: 55px;
        float: left;
        margin-top: -.5%;
        display: block;
    }

    .nav-collapse li {
        width: 100%;
        padding-right: 4%;
        text-align: center;
        border-top: solid 1px #fff;
        cursor: pointer;
        height: 49px;
    }

    .nav-collapse li a {
        text-align: left;
        border-top: 0;
        float: left;
        margin: 0;
        color: #fff;
        font-size: 1.5em;
        font-weight: 400;
        text-transform: uppercase;
        text-decoration: none;
        line-height: .8;
    }

    .nav-collapse a {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        border-top: 1px solid white;
        text-decoration: none;
        background: transparent;
        padding: 0.7em 1em;
        color: #fff;
        width: 100%;
        float: left;
    }

    /***** MOJO CIRCLE *****/
    .dashboardMOJOCircle {
        position: absolute;
        z-index: 10;
        margin: 1% 4% 0 3%;
        width: 120px;
        height: 120px;
        background-color: #fff;
        border-radius: 50%;
        border: solid 3px #779F2D;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
    }

    .dashboardMOJOCirclePoints {
        width: 100%;
        margin-top: 10%;
        padding: 0;
        text-align: center;
        z-index: 999;
        position: absolute;
        cursor: pointer;
    }

    .dashboardMOJOCirclePoints a {
        font-family: 'Monda', sans-serif;
        font-weight: bold;
        font-size: 2.5em;
        color: #779F2D;
        text-decoration: none;
    }

    .dashboardMOJOCircleText {
        width: 80%;
        margin: 48% auto 0;
        line-height: 1.1;
        text-align: center;
        z-index: 999;
        cursor: pointer;
    }

    .dashboardMOJOCircleText a {
        font-family: myriad-pro, sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 1.3em;
        color: #16505f;
        text-decoration: none;
    }
}

/***** Tablet: Portrait *****/
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation : portrait) {
    .dashboardLogoContainer {
        margin: 0 auto;
        width: 100%;
        padding: 2% 0;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

    /***** SUB NAV STYLES *****/
    .dashboardGreenBar {
        width: 100%;
        height: 40px;
        background-color: #6E6E6E;
        /*#98c93d;*/
        position: relative;
        z-index: 3;
        -webkit-box-shadow: 0px 8px 10px 0px rgba(50, 50, 50, 0.35);
        -moz-box-shadow: 0px 8px 10px 0px rgba(50, 50, 50, 0.35);
        box-shadow: 0px 8px 10px 0px rgba(50, 50, 50, 0.35);
    }

    .dashboardSubNavContainer {
        float: left;
        margin: .75% 0 0 0;
        width: 100%;
        height: 30px;
        display: flex;
        justify-content: space-evenly;
    }

    .nav-toggle {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-decoration: none;
        text-indent: -300px;
        position: relative;
        overflow: hidden;
        width: 60px;
        height: 55px;
        float: left;
    }

    .nav-collapse li {
        cursor: pointer;
        height: auto;
        padding: 0;
    }

    .nav-collapse ul {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        list-style: none;
        justify-content: center;
    }

    .nav-collapse li a {
        text-align: left;
        border-top: 0;
        float: left;
        margin: 0;
        color: #fff;
        font-size: 1.5em;
        font-weight: 400;
        text-transform: uppercase;
        text-decoration: none;
        line-height: 1.2;
    }

    .dashboardSubNavLinkContainer {
        padding-right: 4%;
        text-align: center;
        cursor: pointer;
    }

    /***** MOJO CIRCLE *****/
    .dashboardMOJOCircle {
        position: absolute;
        z-index: 10;
        margin: 1% 4% 0 3%;
        width: 120px;
        height: 120px;
        background-color: #fff;
        border-radius: 50%;
        border: solid 3px #779F2D;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
    }

    .dashboardMOJOCirclePoints {
        width: 100%;
        margin-top: 10%;
        padding: 0;
        text-align: center;
        z-index: 999;
        position: absolute;
        cursor: pointer;
    }

    .dashboardMOJOCirclePoints a {
        font-family: 'Monda', sans-serif;
        font-weight: bold;
        font-size: 2.5em;
        color: #779F2D;
        text-decoration: none;
    }

    .dashboardMOJOCircleText {
        width: 80%;
        margin: 48% auto 0;
        line-height: 1.1;
        text-align: center;
        z-index: 999;
        cursor: pointer;
    }

    .dashboardMOJOCircleText a {
        font-family: myriad-pro, sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 1.3em;
        color: #16505f;
        text-decoration: none;
    }
}

/***** Tablet: Landscape *****/
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
    .dashboardLogoContainer {
        width: 100%;
        padding: 2% 0;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

    .dashboardGreenBar {
        width: 100%;
        height: 40px;
        background-color: #6E6E6E;
        /*#98c93d;*/
        position: relative;
        z-index: 3;
        -webkit-box-shadow: 0px 8px 10px 0px rgba(50, 50, 50, 0.35);
        -moz-box-shadow: 0px 8px 10px 0px rgba(50, 50, 50, 0.35);
        box-shadow: 0px 8px 10px 0px rgba(50, 50, 50, 0.35);
    }

    .dashboardSubNavContainer {
        float: left;
        margin: 0;
        width: 100%;
        height: 30px;
        display: flex;
        justify-content: space-evenly;
    }

    .nav-toggle {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-decoration: none;
        text-indent: -300px;
        position: relative;
        overflow: hidden;
        width: 60px;
        height: 55px;
        float: left;
    }

    .nav-collapse li {
        cursor: pointer;
        height: auto;
        padding: 0;
    }

    .nav-collapse ul {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        list-style: none;
        justify-content: center;
    }

    .nav-collapse li a {
        text-align: left;
        border-top: 0;
        float: left;
        margin: 0;
        color: #fff;
        font-size: 1.5em;
        font-weight: 400;
        text-transform: uppercase;
        text-decoration: none;
        line-height: 1.2;
    }

    .mask {
        -webkit-transition: opacity 300ms;
        -moz-transition: opacity 300ms;
        transition: opacity 300ms;
        background: rgba(0, 0, 0, .5);
        visibility: hidden;
        position: fixed;
        opacity: 0;
        z-index: 2;
        bottom: 0;
        right: 0;
        left: 0;
        top: 0;
    }

    .android .mask {
        -webkit-transition: none;
        transition: none;
    }

    .js-nav-active .mask {
        visibility: visible;
        opacity: 1 !important;
        display: block !important;
    }

    .dashboardLogoContainer {
        width: 100%;
        padding: 2% 0;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

    /***** MOJO CIRCLE *****/
    .dashboardMOJOCircle {
        position: absolute;
        z-index: 10;
        margin: 1% 4% 0 3%;
        width: 150px;
        height: 150px;
        background-color: #fff;
        border-radius: 50%;
        border: solid 3px #779F2D;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
    }

    .dashboardMOJOCirclePoints {
        width: 100%;
        margin-top: 10%;
        padding: 0;
        text-align: center;
        z-index: 999;
        position: absolute;
        cursor: pointer;
    }

    .dashboardMOJOCirclePoints a {
        font-family: 'Monda', sans-serif;
        font-weight: bold;
        font-size: 3.5em;
        color: #779F2D;
        text-decoration: none;
    }

    .dashboardMOJOCircleText {
        width: 80%;
        margin: 48% auto 0;
        line-height: 1.1;
        text-align: center;
        z-index: 999;
        cursor: pointer;
    }

    .dashboardMOJOCircleText a {
        font-family: myriad-pro, sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 1.5em;
        color: #16505f;
        text-decoration: none;
    }
}

/***** LAPTOP *****/
@media only screen and (min-width: 1281px) and (max-width: 1599px) and (orientation : landscape) {
    .dashboardLogoContainer {
        width: 100%;
        padding: 2% 0;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

    /***** MOJO CIRCLE *****/
    .dashboardMOJOCircle {
        position: absolute;
        z-index: 10;
        margin: 1% 4% 0 5%;
        width: 150px;
        height: 150px;
        background-color: #fff;
        border-radius: 50%;
        border: solid 6px #779F2D;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
    }

    .dashboardMOJOCirclePoints {
        width: 100%;
        margin-top: 10%;
        padding: 0;
        text-align: center;
        z-index: 999;
        position: absolute;
        cursor: pointer;
    }

    .dashboardMOJOCirclePoints a {
        font-family: 'Monda', sans-serif;
        font-weight: bold;
        font-size: 3.5em;
        color: #779F2D;
        text-decoration: none;
    }

    .dashboardMOJOCircleText {
        width: 80%;
        margin: 48% auto 0;
        line-height: 1.5;
        text-align: center;
        z-index: 999;
        cursor: pointer;
    }

    .dashboardMOJOCircleText a {
        font-family: myriad-pro, sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 1.5em;
        color: #16505f;
        text-decoration: none;
    }
}

/***** DESKTOP *****/
@media (min-width: 1920px) and (max-width: 2000px) and (orientation: landscape) {
    /***** HEADER STYLES *****/
    .dashboardLogoContainer {
        width: 100%;
        padding: 2% 0;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

    /***** MOJO CIRCLE *****/
    .dashboardMOJOCircle {
        margin: 0 4% 0 15%;
        width: 170px;
        height: 170px;
        background-color: #fff;
        border-radius: 50%;
        border: solid 6px #779F2D;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
    }

    .dashboardMOJOCirclePoints {
        width: 100%;
        margin-top: 10%;
        padding: 0;
        text-align: center;
        z-index: 999;
        position: absolute;
        cursor: pointer;
    }

    .dashboardMOJOCirclePoints a {
        font-family: 'Monda', sans-serif;
        font-weight: bold;
        font-size: 4em;
        color: #779F2D;
        text-decoration: none;
    }

    .dashboardMOJOCircleText {
        width: 80%;
        margin: 52% auto 0;
        line-height: 1.1;
        text-align: center;
        z-index: 999;
        cursor: pointer;
    }

    .dashboardMOJOCircleText a {
        font-family: myriad-pro, sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 1.8em;
        color: #16505f;
        text-decoration: none;
    }
}

/***** Widescreen Styles *****/
@media only screen and (min-width: 1600px) and (max-width: 2000px) and (orientation: landscape) {
    /***** HEADER STYLES *****/
    .dashboardLogoContainer {
        width: 100%;
        padding: 2% 0;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

    /***** MOJO CIRCLE *****/
    .dashboardMOJOCircle {
        position: absolute;
        z-index: 10;
        margin: .25% 4% 0 15%;
        width: 170px;
        height: 170px;
        background-color: #fff;
        border-radius: 50%;
        border: solid 6px #779F2D;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
    }

    .dashboardMOJOCirclePoints {
        width: 100%;
        margin-top: 10%;
        padding: 0;
        text-align: center;
        z-index: 999;
        position: absolute;
        cursor: pointer;
    }

    .dashboardMOJOCirclePoints a {
        font-family: 'Monda', sans-serif;
        font-weight: bold;
        font-size: 4em;
        color: #779F2D;
        text-decoration: none;
    }

    .dashboardMOJOCircleText {
        width: 80%;
        margin: 52% auto 0;
        line-height: 1.1;
        text-align: center;
        z-index: 999;
        cursor: pointer;
    }

    .dashboardMOJOCircleText a {
        font-family: myriad-pro, sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 1.8em;
        color: #16505f;
        text-decoration: none;
    }
}

@media only screen and (min-width: 2000px) and (orientation: landscape) {
    /***** HEADER STYLES *****/
    .dashboardLogoContainer {
        width: 100%;
        padding: 2% 0;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }
    
    /***** MOJO CIRCLE *****/
    .dashboardMOJOCircle {
        position: absolute;
        z-index: 10;
        margin: -4% 4% 0 15%;
        width: 170px;
        height: 170px;
        background-color: #fff;
        border-radius: 50%;
        border: solid 6px #779F2D;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
        box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.55);
    }

    .dashboardMOJOCirclePoints {
        width: 100%;
        margin-top: 10%;
        padding: 0;
        text-align: center;
        z-index: 999;
        position: absolute;
        cursor: pointer;
    }

    .dashboardMOJOCirclePoints a {
        font-family: 'Monda', sans-serif;
        font-weight: bold;
        font-size: 4em;
        color: #779F2D;
        text-decoration: none;
    }

    .dashboardMOJOCircleText {
        width: 80%;
        margin: 52% auto 0;
        line-height: 1.1;
        text-align: center;
        z-index: 999;
        cursor: pointer;
    }

    .dashboardMOJOCircleText a {
        font-family: myriad-pro, sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 1.8em;
        color: #16505f;
        text-decoration: none;
    }
}