﻿@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
    src: local('Material Icons'), local('MaterialIcons-Regular'), url(fonts/MaterialIcons-Regular.woff2) format('woff2'), url(fonts/MaterialIcons-Regular.woff) format('woff'), url(fonts/MaterialIcons-Regular.ttf) format('truetype');
}

.noselect {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}


.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}

body {
    margin: 0px;
    font-family: Arial;
    font-size: 12px;
}

.fill {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}



.right {
    float: right;
}

.left {
    float: left;
}

.odd {
    background-color: #eeeeee;
}

.selected {
    font-weight: bold;
    border-right: 6px solid #444444;
    color: #000000;
}

.even {
    background-color: white;
}

.scroll {
    overflow: scroll;
    display: block;
    will-change: transform;
}

.light-scroll {
    overflow-y: auto;
    overflow-x: clip;
    display: block;
    will-change: transform;
}

    .light-scroll::-webkit-scrollbar,
    .light-scroll::-webkit-scrollbar-thumb {
        width: 17px;
        border-radius: 10px;
        background-clip: padding-box;
        border: 4px solid transparent;
        background-color: rgba(255,255,255,0.2);
    }

    .light-scroll::-webkit-scrollbar-thumb {
        box-shadow: inset 0 0 0 10px rgba(255,255,255,0.3);
    }



.dark-scroll {
    overflow-y: auto;
    overflow-x: clip;
    display: block;
    will-change: transform;
}

    .dark-scroll::-webkit-scrollbar,
    .dark-scroll::-webkit-scrollbar-thumb {
        width: 17px;
        border-radius: 10px;
        background-clip: padding-box;
        border: 4px solid transparent;
        background-color: rgba(0,0,0,0.2);
    }

    .dark-scroll::-webkit-scrollbar-thumb {
        box-shadow: inset 0 0 0 10px rgba(0,0,0,0.3);
    }


.view-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 70px;
    background-color: #343434;
    border-bottom: 3px solid #000000;
}

    .view-header .title {
        line-height: 70px;
        font-size: 22px;
        padding: 0px 25px;
        color: white;
        display: inline-block;
    }

    .view-header .user {
        vertical-align: top;
        color: #dedede;
        font-size: 14px;
        cursor: default;
        line-height: 70px;
        display: inline-block;
        padding: 0px 20px;
        float: right;
    }

.viewNavigatorPane {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    bottom: 0;
    height: 100%;
    background-color: #efefef;
}

.viewDetailsPane {
    position: absolute;
    left: 300px;
    right: 0;
    top: 70px;
    bottom: 0;
    background-color: #fefefe;
}

.left-menu-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 400px;
}

.left-menu-box {
    background-color: #cccccc;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    border-right: 1px solid #aaaaaa;
}

.mission-list {
    position: absolute;
    top: 55px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
}

.mission-list-group-header {
    color: white;
    width: 100%;
    cursor: pointer;
    border-top: 1px solid grey;
    opacity: 0.7;
}

    .mission-list-group-header:hover {
        background-color: rgba(255,255,255,0.1);
        opacity: 1;
    }

    .mission-list-group-header .status-icon {
        width: 20%;
        display: inline-block;
        text-align: center;
        line-height: 45px;
        vertical-align: middle;
    }

    .mission-list-group-header .status {
        width: 65%;
        display: inline-block;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 700;
        line-height: 45px;
    }

    .mission-list-group-header .arrow {
        width: 5%;
        display: inline-block;
        font-size: 20px;
        line-height: 45px;
        vertical-align: middle;
    }

.missionGroupSelected {
    background-color: rgba(255,255,255,0.1);
    opacity: 1;
}

.listMissionItemContainer {
    width: 100%;
    background: linear-gradient( to left, #333 0%, #333 12%, rgba(255,255,255,0.3) 47%, rgba(255,255,255,0.3) 100% ) left bottom #333 no-repeat;
    /*background: linear-gradient(to left, #383838, #333 90%);*/
    background-size: 100% 1px;
}

.listMissionItem {
    height: 50px;
    width: 90%;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    padding: 5px 0px;
}

    .listMissionItem:hover {
        background-color: rgba(255,255,255,0.05);
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

.missionSelected {
    background-color: rgba(255,255,255,0.05);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: 8px solid white;
}

    .missionSelected:hover {
        opacity: 0.8;
    }



.itemMissionStatusBox {
    border-right: 1px dashed rgba(255,255,255,0.1);
    width: 30%;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 11px;
    text-align: center;
}

    .itemMissionStatusBox .active {
        color: #55ff00;
    }

    .itemMissionStatusBox .editing {
        color: yellow;
    }

    .itemMissionStatusBox .approved {
        color: orange;
    }

    .itemMissionStatusBox .complete {
        color: grey;
        font-style: italic;
    }

.itemMissionDescBox {
    width: 95%;
    padding-left: 40px;
}

    .itemMissionDescBox .active {
        color: #55ff00;
    }

    .itemMissionDescBox .editing {
        color: yellow;
    }

    .itemMissionDescBox .approved {
        color: orange;
    }

    .itemMissionDescBox .complete {
        color: grey;
    }

    .itemMissionDescBox .inactive {
        color: red;
    }

.itemMissionArrow {
    width: 10%;
    color: grey;
    text-align: right;
}

.itemMissionCode {
    display: block;
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 7px;
}



.mission-detail-panel {
    position: absolute;
    top: 0;
    left: 400px;
    bottom: 0;
    right: 0;
    display: block;
    background-color: #e6e6e6;
    padding: 5px;
}


.tabbed-panel-sm {
    position: absolute;
    top: 10px;
    left: 0;
    bottom: 10px;
    right: 0;
    display: block;
    text-align: left;
}

.panel-box-tabbed-sm {
    background-color: #444;
    border-radius: 4px;
    display: block;
    margin: 0px 10px;
    border: 1px solid grey;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
}

    .panel-box-tabbed-sm .title {
        color: white;
        padding: 5px 0px 10px 5px;
        font-size: 18px;
    }

.tabBox-sm {
    width: 135px;
    display: inline-block;
    background: linear-gradient(#fff 60%,rgba(255,255,255,0.5));
    border: 0px;
    line-height: 30px;
    vertical-align: middle;
    margin-top: 7px;
    font-size: 13px;
    color: #313131;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    opacity: 0.5;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.tabselectedSm {
    line-height: 30px;
    opacity: 1;
    background: white;
}


.selectedMission {
    position: absolute;
    top: 72px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    background-color: white;
    display: block;
    overflow: auto;
    color: black;
    padding: 10px;
}


.collapse-well {
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 5px;
    box-shadow: 2px 2px 4px grey;
    width: 100%;
    display: block;
    background-color: #444;
    margin-bottom: 10px;
}

    .collapse-well .headerOpen {
        border-bottom: 3px solid grey;
    }

    .collapse-well .header {
        width: 100%;
        display: inline-block;
        height: 40px;
        cursor: pointer;
    }

        .collapse-well .header .title {
            color: white;
            font-size: 16px;
            line-height: 40px;
            font-weight: bold;
            padding-left: 10px;
            width: 80%;
            display: inline-block;
        }

        .collapse-well .header .arrow {
            color: white;
            font-size: 20px;
            display: inline-block;
            width: 15%;
            text-align: right;
        }

            .collapse-well .header .arrow .material-icons {
                font-size: 30px;
                vertical-align: middle;
            }

    .collapse-well .content {
        width: 100%;
        max-height: 600px;
        display: block;
        background-color: white;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

.full-width-well {
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 5px;
    box-shadow: 2px 2px 4px grey;
    width: 100%;
    display: block;
    background-color: white;
    margin-bottom: 10px;
}

.configPanel {
    display: inline-block;
    width: 48%;
    vertical-align: top;
    margin-top: 15px;
}

.panelDetailsHeader {
    color: grey;
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.actionWell {
    position: relative;
    height: 500px;
    display: block;
    overflow: clip;
}

.actionPanelLeft {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 300px;
    box-shadow: 3px 2px 3px rgba(0,0,0,0.3);
}

    .actionPanelLeft .header {
        background-color: #555;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 40px;
        width: 100%;
        display: block;
        z-index: 2;
        border-bottom: 1px solid grey;
        box-shadow: 0px 2px 4px -2px rgba(0,0,0,0.5);
    }

    .actionPanelLeft .navList {
        background-color: #555;
        position: absolute;
        top: 40px;
        bottom: 0;
        left: 0;
        right: 0;
        border-bottom-left-radius: 5px;
        display: flex;
        flex-direction: column;
        color: white;
    }


.navList .action {
    padding: 5px;
    line-height: 40px;
    width: 95%;
    font-size: 15px;
    cursor: pointer;
    border-bottom: 1px solid grey;
}

    .navList .action:hover {
        background-color: rgba(255,255,255,0.1);
        border-bottom-right-radius: 15px;
    }

.actionSelected {
    background-color: rgba(255,255,255,0.1) !important;
    border-right: 1px solid grey;
    border-bottom-right-radius: 15px;
}

    .actionSelected:hover {
        background-color: rgba(255,255,255,0.2) !important;
        border-right: 1px solid grey;
        opacity: 0.9;
    }

.navList .action .icon {
    width: 25px;
    display: inline-block;
    line-height: 50px;
    vertical-align: middle;
    color: rgba(255,255,255,0.5);
}

.navList .action .arrow {
    width: 10px;
    font-size: 18px;
    display: inline-block;
    line-height: 50px;
    vertical-align: middle;
}

.navList .action .info {
    width: 225px;
    display: inline-block;
    line-height: 20px;
    vertical-align: middle;
}

    .navList .action .info .title {
        display: block;
        padding-left: 10px;
        font-weight: 600;
        font-size: 14px;
    }

    .navList .action .info .type {
        display: block;
        padding-left: 10px;
        font-size: 12px;
        color: rgba(255,255,255,0.65);
    }

.actionPanelRight {
    display: block;
    height: 1000px;
    position: absolute;
    top: 0;
    right: 0;
    left: 300px;
    bottom: 0;
}

.actionEditContainer {
    position: absolute;
    right: 20px;
    top: 10px;
}

.betSourcesContainer {
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    max-width: 95%;
    background-color: rgba(0,0,0,0.03);
}

.betSourceHeader {
    text-align: left;
    width: 100%;
    display: block;
    color: grey;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px dotted rgba(0,0,0,0.2);
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.betSourceConfigButton {
    background-color: darkcyan;
    color: white;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    min-width: 115px;
    text-align: center;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}


.DMRPOffersBox {
    border: 1px solid grey;
    border-radius: 3px;
}

.DMRPOffers {
    overflow-y: scroll;
    height: 350px;
}

.DMRPOffersRepeaterItem {
    background-color: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    border-radius: 3px;
    margin: 10px 5px;
    padding: 3px 0px;
    cursor: pointer;
    vertical-align: top;
}

    .DMRPOffersRepeaterItem:hover {
        background-color: rgba(0,0,0,0.15);
    }

.DMRPSelected {
    background-color: #0e76b3;
    border: 1px solid rgba(0,0,0,0.07);
    color: white;
}

    .DMRPSelected:hover {
        background-color: #0e76b3;
        opacity: 0.9;
    }

.DMRPOffersFilter {
    padding: 10px 10px 15px 10px;
    text-align: left;
    border-bottom: 1px dotted white;
    font-size: 13px;
    background-color: rgba(0,0,0,0.7);
    color: white;
}

    .DMRPOffersFilter div input {
        font-size: 13px;
        background-color: rgba(255,255,255,0.8);
        border: 1px solid rgba(0,0,0,0.8);
    }

        .DMRPOffersFilter div input:focus {
            font-size: 13px;
            background-color: white;
            border: 1px solid rgba(0,0,0,0.8);
        }


.DMRPItemSpan {
    display: block;
    padding-bottom: 2px;
}



/*buttons*/

.button {
    cursor: pointer;
    border-radius: 2px;
    display: block;
    text-align: center;
    color: white;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
    font-weight: bold;
    box-shadow: 0px 1px 1px rgba(0,0,0,0.5);
    text-transform: uppercase;
    border: unset;
    min-width: 100px;
    opacity: 0.94;
}

    .button:hover {
        opacity: 1;
    }



.button-sm {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 10px;
    min-width: 60px;
}

.button-lg {
    padding: 8px 3px;
    font-size: 12px;
}

.button-green {
    background-color: #39b549;
}

.button-grey {
    background-color: grey;
    cursor: auto !important;
    opacity: 0.8;
}

.button-darkblue {
    background-color: #2d7a96;
}

.button-red {
    background-color: #e31919;
}

.button-yellow {
    background-color: #feb600;
}




/*MODAL*/
.modal {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    padding-top: 100px;
}

    .modal .modalBG {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0,0,0,0.6);
        z-index: 11;
        display: block;
    }

    .modal .modalBox {
        width: 475px;
        display: block;
        background-color: white;
        border-radius: 7px;
        box-shadow: 5px 5px 5px rgba(0,0,0,0.4);
        margin: 0 auto;
        z-index: 120;
        position: relative;
        padding: 35px 20px;
        text-align: center;
    }

.modalButtonsContainer {
    margin-top: 20px
}

.modal-button {
    width: 30%;
    display: inline-block;
    padding: 15px 0px;
    margin: 5px;
    font-size: 18px;
    text-transform: uppercase;
}



/*form*/
.modalFormRow {
    display: block;
    margin-bottom: 14px;
    font-size: 14px;
    text-align: left;
    margin-left: 30px;
}

.formRow {
    display: block;
    margin-bottom: 14px;
    font-size: 14px;
    text-align: left;
}


.label-md {
    display: inline-block;
    text-align: left;
    margin-bottom: 3px;
    font-weight: bold;
    color: #222;
    width: 125px;
    vertical-align: top;
}


.input-md {
    width: 250px;
    display: inline-block;
    padding: 3px;
    font-size: 14px;
    font-family: Arial;
    vertical-align: top;
}

.input-textarea {
    min-height: 55px;
}

.label-sm {
    display: inline-block;
    text-align: left;
    margin-bottom: 3px;
    font-weight: bold;
    color: #222;
    min-width: 125px;
    font-size: 12px;
    vertical-align: top;
}

.input-sm {
    color: #222;
    width: 150px;
    display: inline-block;
    padding: 3px;
    font-size: 12px;
    font-family: Arial;
    vertical-align: top;
}

.checkbox {
    max-width: 15px;
    height: 15px;
}

.checkboxRow {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    text-align: left;
}

.dowCheckboxGroup {
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    max-width: 300px;
    background-color: rgba(0,0,0,0.03);
}

.lineBreak {
    border-top: 3px dashed rgba(0,0,0,0.1);
    margin: 15px 0px;
}

.eligibleListSummary {
    border: 1px solid rgba(0,0,0,0.2);
    background-color: rgba(0,0,0,0.04);
    border-radius: 5px;
    padding: 5px;
    max-width: 250px;
}

    .eligibleListSummary .smRow {
        display: block;
        padding-bottom: 5px;
    }

.label-el {
    width: 150px;
    display: inline-block;
    font-weight: bold;
}


.missionImage {
    max-width: 450px;
    max-height: 300px;
}

.actionImage {
    max-width: 250px;
    max-height: 150px;
    text-align: center;
}


/*key frames animations*/
.fade.ng-enter {
    animation: 0.5s appear;
}

.fade.ng-leave {
    animation: 0.5s disappear;
}



.fadeQuick.ng-enter {
    animation: 0.2s appear;
}

.fadeQuick.ng-leave {
    animation: 0.3s disappear;
}


.fadeQuickest.ng-enter {
    animation: 0.2s appear;
}

.fadeQuickest.ng-leave {
    animation: 0.1s disappear;
}


@keyframes appear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes disappear {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


.slide.ng-enter {
    animation: 0.3s slideopen;
}

.slide.ng-leave {
    animation: 0.3s slideclose;
}

@keyframes slideopen {
    from {
        max-height: 0px;
    }

    to {
        max-height: 600px;
    }
}

@keyframes slideclose {
    from {
        max-height: 600px;
    }

    to {
        max-height: 0px;
    }
}












.panel-box {
    background-color: white;
    margin: 10px 10px;
    box-shadow: 0px 0px 12px #333;
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
}

    .panel-box .title {
        font-size: 20px;
        color: black;
        border-bottom: solid 1px #e6e6e6;
        padding: 10px;
        position: relative;
        text-align: left;
    }

.left-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 400px;
    display: block;
    text-align: center;
    background-color: #e6e6e6;
}

.right-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 200px;
    display: block;
    text-align: center;
    background-color: #333;
}

.main-panel {
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    width: 600px;
    display: block;
    text-align: center;
    background-color: #e6e6e6;
}



.check-panel {
    position: absolute;
    top: 0;
    left: 610px;
    bottom: 0;
    width: 400px;
    display: block;
    text-align: center;
    background-color: #e6e6e6;
}




.datalist {
}



    .datalist .row {
        padding: 3px 5px;
    }

    .datalist .label {
        display: inline-block;
    }


    .datalist .scroll {
        position: absolute;
        top: 55px;
        left: 0;
        right: 0;
        bottom: 2px;
        display: block;
        overflow: auto;
        color: black;
    }





.data-item {
    display: block;
    color: black;
    border-bottom: solid 1px #e6e6e6;
    margin: 0;
    padding: 0;
    text-align: left;
    min-height: 20px;
    position: relative;
    line-height: 20px;
}

    .data-item:hover {
        background-color: aliceblue;
    }

    .data-item.selected {
        background-color: #5da9ff;
        color: black;
    }

.drop-box {
    background: #F8F8F8;
    border: 5px dashed #DDD;
    width: 100%;
    min-height: 50px;
    text-align: center;
    display: inline-block;
    padding: 2px;
}


.file-link:link {
    color: black;
}

.file-link:visited {
    color: black;
}

.file-link:active {
    color: #333;
}

.file-link:hover {
    color: #1a1a1a;
}




.stat-box {
    position: relative;
    display: block;
    text-align: center;
    font-size: 0px;
    padding: 2px 0px;
    color: #f1f1f1;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.6);
}

.stat {
    display: inline-block;
    width: 75px;
    text-align: center;
}

    .stat .name {
        display: block;
        text-align: center;
        font-size: 9px;
    }

    .stat .value {
        font-size: 18px;
    }



.right-panel .stat-box {
    margin: 5px 10px;
}


.right-panel .stat {
    display: inline-block;
    width: 175px;
    text-align: center;
    margin: 10px 0px;
}

    .right-panel .stat .name {
        display: block;
        text-align: center;
        font-size: 15px;
    }

    .right-panel .stat .value {
        font-size: 25px;
    }



.repeat-item.ng-enter,
.repeat-item.ng-leave {
    -webkit-transition: 0.5s linear all;
    transition: 0.5s linear all;
}

    .repeat-item.ng-enter,
    .repeat-item.ng-leave.ng-leave-active {
        opacity: 0;
    }

        .repeat-item.ng-leave,
        .repeat-item.ng-enter.ng-enter-active {
            opacity: 1;
        }

.repeat-item {
}

.requester-item:hover {
    background-color: aliceblue;
}

.user-item:hover {
    background-color: aliceblue;
}

.user-item {
    text-transform: uppercase;
    background-color: white;
    color: black;
    padding: 5px 10px;
    border-radius: 4px;
}

    .user-item.selected {
        background-color: blue;
        color: white;
    }

.statusCircle {
    height: 12px;
    width: 12px;
    display: block;
    border-radius: 50%;
    box-shadow: 0px 0px 4px #000;
}

.NoUltraWideNonsense {
    max-width: 1000px;
}







/*LOADER********************************************/
.loader {
    color: #fff;
    font-size: 80px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin: 72px auto;
    position: relative;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%, 95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%, 59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%, 95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%, 59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@-webkit-keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loading-fill {
    padding-top: 150px;
    z-index: 1005;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
    text-align: center;
    color: #fff;
    background-color: rgba(0,0,0,0.4);
    border-radius: 7px;
}



/*DOT vertical loader*/
.dot-elastic {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.3);
    color: rgba(0,0,0,0.3);
    animation: dotElastic 1s infinite linear;
    margin: 10px auto 0px auto;
}

    .dot-elastic::before, .dot-elastic::after {
        content: '';
        display: inline-block;
        position: absolute;
        top: 0;
    }

    .dot-elastic::before {
        left: -15px;
        width: 10px;
        height: 10px;
        border-radius: 5px;
        background-color: rgba(0,0,0,0.3);
        color: rgba(0,0,0,0.3);
        animation: dotElasticBefore 1s infinite linear;
    }

    .dot-elastic::after {
        left: 15px;
        width: 10px;
        height: 10px;
        border-radius: 5px;
        background-color: rgba(0,0,0,0.3);
        color: rgba(0,0,0,0.3);
        animation: dotElasticAfter 1s infinite linear;
    }

@keyframes dotElasticBefore {
    0% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(1, 1.5);
    }

    50% {
        transform: scale(1, 0.67);
    }

    75% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes dotElastic {
    0% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1, 1.5);
    }

    75% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes dotElasticAfter {
    0% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1, 0.67);
    }

    75% {
        transform: scale(1, 1.5);
    }

    100% {
        transform: scale(1, 1);
    }
}

.footerBackground {
    background-color: #161D22;
    padding: 6px;
    width: 100%;
    height: 25px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.footerText {
    color: #939EA4;
    font-size: 8pt;
    font-family: Arial;
    padding: 1px;
    padding-left: 25px;
    padding-right: 25px;
}


.formLabel {
    font-size: 10pt;
    color: #333333;
}

.formField {
    font-size: 11pt;
    color: #333333;
}

.tblMissionTitle {
    font-size: 12pt;
    color: #000000;
}

.tblMissionLabel {
    font-size: 10pt;
    color: #444444;
    line-height: 10px;
}

.tblMissionField {
    font-size: 10pt;
    color: #000000;
    line-height: 10px;
}


.tblMissionTitleLg {
    font-size: 16pt;
    color: #000000;
}

.tblMissionLabelLg {
    font-size: 12pt;
    color: #444444;
    line-height: 10px;
}

.tblMissionFieldLg {
    font-size: 12pt;
    color: #111111;
    line-height: 20px;
}

.tblMissionYes {
    color: #185C37;
    font-size: 10pt;
}

.tblMissionNo {
    color: #7D0303;
    font-size: 10pt;
}

.tblMissionHint {
    font-size: 8pt;
    color: #999999;
    line-height: 10px;
}

.tblBodyText {
    font-size: 10pt;
    color: #222222;
    line-height: 14px;
}

.tblMissionError {
    color: #7D0303;
}

.tblMissionSummaryHeader {
    font-size: 11pt;
    color: #000000;
    font-weight: 600;
}

.tblMissionSummaryBody {
    font-size: 10pt;
    color: #000000;
}

.tableDataCell {
    font-size: 9pt;
    line-height: 10px;
    border: 1px solid #cccccc;
    padding: 5px;
    color: #333333;
}

.tableDataCellInactive {
    font-size: 10pt;
    line-height: 13px;
    border: 1px solid #cccccc;
    padding: 5px;
    color: #cccccc;
}


.tableDataCell.selected {
    font-size: 10pt;
    line-height: 13px;
    background-color: #dddddd;
    font-weight: bold;
}

.tableHeaderCell {
    font-size: 9pt;
    background-color: #666666;
    line-height: 10px;
    color: #ffffff;
    padding: 5px;
}

.tableHeaderCellSmall {
    font-size: 9pt;
    background-color: #666666;
    line-height: 10px;
    color: #ffffff;
    padding: 5px;
}

.tableSectionHeader {
    padding-top: 18px;
    font-size: 11pt;
    color: #333333;
    padding-left: 5px;
}

.button {
    position: relative;
    height: 28px;
    background-color: silver;
    border-radius: 2px;
    color: black;
    line-height: 20px;
    padding: 3px 3px;
    text-transform: none;
}

.btnGreen {
    background-color: #00583C;
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 10pt;
    text-transform: none;
}

.btnBlack {
    background-color: #222222;
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 10pt;
    text-transform: none;
}

.btnLGray {
    background-color: #666666;
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 10pt;
    text-transform: none;
}

.btnLighterGray {
    background-color: #999999;
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 10pt;
    text-transform: none;
}

.btnDGray {
    background-color: #333333;
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 10pt;
    text-transform: none;
}

.btnRed {
    background-color: #B83C4B;
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 10pt;
    text-transform: none;
}

.btnBlue {
    background-color: #114195;
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 10pt;
    text-transform: none;
}

.btnTiny {
    font-size: 8pt;
    padding: 2px;
    text-transform: none;
}

.btnTeenyTiny {
    font-size: 7pt;
    padding: 0px;
    margin: 0px;
}

.btnDisabled {
    opacity: 0.4;
}

.screenHint {
    font-size: 8pt;
    line-height: 10px;
    padding: 7px;
    color: #666666;
}

.screenLabel {
    font-size: 10pt;
    line-height: 12px;
    border: 0px solid #cccccc;
    padding: 7px;
    color: #666666;
}


.screenLabelRed {
    font-size: 11pt;
    line-height: 12px;
    border: 0px solid #cccccc;
    padding: 7px;
    color: #880101;
}

.screenError {
    font-size: 11pt;
    line-height: 12px;
    border: 0px solid #cccccc;
    padding: 7px;
    color: #880101;
}


.screenField {
    font-size: 10pt;
    line-height: 12px;
    border: 0px solid #cccccc;
    padding: 7px;
    color: #000000;
}

.jrDarkRed {
    color: #350010;
}

.jrRed {
    color: #6A1638;
}

.jrPink {
    color: #EC94BC;
}

.jrDarkPink {
    color: #E468A0;
}

.jrDeepPink {
    color: #AA336A;
}

.calendar {
    width: 4.75rem;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    font-family: var(--falcon-font-sans-serif);
    border-radius: 0.375rem;
}

    .calendar .calendar-month {
        font-size: 1.25rem;
        background-color: #E468A0;
        color: #FFFfff;
        border-radius: 0.375rem 0.375rem 0 0;
        padding: 0.25rem;
        font-weight: 600;
    }


    .calendar .calendar-day {
        font-size: 2.25rem;
        padding: 0.25rem;
        border: 0.125rem solid #E468A0;
        border-top: 0;
        border-radius: 0 0 0.375rem 0.375rem;
        color: #333333;
        font-weight: 700;
    }

.calendarPast {
    width: 4.75rem;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    font-family: var(--falcon-font-sans-serif);
    border-radius: 0.375rem;
}

    .calendarPast .calendar-month {
        font-size: 1.25rem;
        background-color: #666666;
        color: #fff;
        border-radius: 0.375rem 0.375rem 0 0;
        padding: 0.25rem;
        font-weight: 600;
    }


    .calendarPast .calendar-day {
        font-size: 2.25rem;
        padding: 0.25rem;
        border: 0.125rem solid #666666;
        border-top: 0;
        border-radius: 0 0 0.375rem 0.375rem;
        color: #333333;
        font-weight: 700;
    }


.eventTitle {
    font-size: 12pt;
    font-weight: bold;
    padding-left: 5px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.eventSubTitle {
    font-size: 9pt;
    padding-left: 5px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.eventBodyText {
    color: #000000;
    font-size: 11pt;
    padding-left: 5px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.eventDateTime {
    font-size: 10pt;
    color: #333333;
    font-style: italic;
    padding-left: 5px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.eventURL {
    font-size: 10pt;
    padding-left: 15px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.testamonialText{
    font-size: 12pt;
    color: #333333;
}

.testamonialSignature {
    font-size: 12pt;
    color: #000000;
    font-style: italic;
    padding-right: 25px;
    padding-top: 15px;
}

.mediaLinkTitle{
    font-size: 14pt;
    font-weight: bold;
}

.mediaLinkBody {
    font-size: 12pt;
}

.mediaLinkLink {
    font-size: 11pt;    
    padding-left: 25px;
}

.mediaLinkIcon {
    font-size: 14pt;
    padding-right: 10px;
    color:#822752; 
}


.resourceLinkTitle {
    font-size: 14pt;
    font-weight: bold;
}

.resourceLinkBody {
    font-size: 12pt;
}

.resourceLinkLink {
    font-size: 11pt;
    text-transform: lowercase;
    padding-left: 25px;
    padding-top: 10px;
}

.buildDate {
    font-size: 8pt;
    color: #777777;
    padding-bottom: 5px;
    padding-top: 6px;
    line-height: 12px;
}

.dropShadow {
    box-shadow: 0px 2px 15px #cccccc;
    padding: 10px;
}

.heroText {
    font-family: "Raleway", sans-serif;
    padding-left: 35px;
    font-size: 24pt;
    color: #f1f1f1;
}

.heroTitle {
    font-family: "Raleway", sans-serif;
    font-size: 35pt;
    color: #ffffff;
    border-bottom: 4px solid #E468A0;
}


.newSectionTitle {
    border-bottom: 3px solid #822752;
    font-size: 30px;
    font-weight: bold;
    color: #333333;
}