/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 
for details on configuring this project to bundle and minify static web assets. */
body {
    padding-top: 0;
    padding-bottom: 20px;
    font-family: "Trebuchet MS", "Franklin Gothic Book", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Lucida, sans-serif, Aerial;
}

.pulse_drop {

}



.drop-down-buttons {
    width: 100%;
    padding: 5px;
    background-color: transparent;
    color: #334334;
    border: none;
    vertical-align: middle;
    transition-duration: 0.5s;
    display:block;
}

    .drop-down-buttons:hover {
        background-color: #334334;
        color: white;
        transition-duration:0.5s;
    }

    .drop-down-buttons .table {
        margin:0px;
    }
    
    .drop-down-buttons .table tr td{
        border:none;
    }

    .pulse_drop_animate {
    }

.fixedPosition {
    top:5px;
    position: fixed !important;
    transition: top 1s linear;
    width:360px;
}

.form-control:focus {
    border-color: #9FB895;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(159, 186, 149, .6);
}

.page-heading {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: solid #334334 2px;
    padding: 10px;
}

.table {
    width:100%;
}

.tab-pane {
    padding-top:10px;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
}

    .close:hover,
    .close:focus {
        color: #fff;
        text-decoration: none;
        cursor: pointer;
    }

.modal-header {
    padding: 2px 16px;
    background-color: #476E3E;
    color: white;
    text-align:center;
}

.modal-body {
    padding: 2px 16px;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #476E3E;
    color: white;
}

.btn-danger {
    border: none;
    margin-bottom: 10px;
    transition-duration: 0.5s;
}
.btn-danger:hover {
    transition-duration: 0.5s;
}

.btn-success {
    background-color: #36432D;
}
.btn-success:hover {
    background-color: #30372c !important;
}

.text-danger {
    text-align:justify;
}

.draggableDiv {
    position: absolute;
    z-index: 9;
    background-color: #9FB895;
    border: 1px solid #d3d3d3;
    text-align: center;
    width:300px;
    height:450px;
    left:30px;
    top:75px;
    transition-duration:1s;
    overflow:hidden;
}

.draggableDivSub {
    position: absolute;
    z-index: 9;
    background-color: #9FB895;
    border: 1px solid #d3d3d3;
    text-align: center;
    width: 250px;
    height: 45px;
    left: 30px;
    top: 75px;
    transition-duration: 1s;
    overflow: hidden;
}

.draggableDivheader {
    padding: 10px;
    cursor: move;
    z-index: 10;
    background-color: #9FB895;
    color: #fff;
}
.draggableDivSubheader {
    padding: 10px;
    cursor: move;
    z-index: 10;
    background-color: #9FB895;
    color: #fff;
}

.btn-primary:focus {
    background-color: #476E3E;
}

.body-content {
    padding-left: 15px;
    padding-right: 15px;
    min-height: 200px;
    z-index: 1;
    background-color: #ffffff;
}

.portionAndReserve {
    -webkit-animation: pulsePortionAndReserve 1.5s infinite;
}

.portionAndReserve:active {
    -webkit-animation: none;
}


@keyframes pulsePortionAndReserve {
    0% {
        margin-left:0%
    }
    25% {
        margin-left: 0%
    }
    50% {
        margin-left: 0%
    }
    75% {
        margin-left: 0%
    }
    80% {
        margin-left: 5%;
    }
    85% {
        margin-left: -5%;
    }
    90% {
        margin-left: 2%;
    }
    95% {
        margin-left: -2%;
    }
    100% {
        margin-left: 0%;
    }
}


.peek-alert {
    max-width: 1140px;
    overflow-x: hidden;
    transition-duration: 0.5s;
}

.peek-button {
    opacity: 0;
    transition-duration: 0.5s;
}

.peek-alert:hover {
    max-width: 1000px;
    overflow-x: hidden;
    transition-duration: 0.5s;
}
    .peek-alert:hover ~ .peek-button {
        opacity: 100;
        transition-duration: 0.5s;
    }

.questionFloat {
    -webkit-animation: questionFloating 3s infinite;
}

@keyframes questionFloating {
    0% {
        transform: scale(0.99);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(.99);
    }

    75% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(.99);
    }
}

.emailRushOut {
    -webkit-animation: emailRushOut 1s;
}

@keyframes emailRushOut {
    0% {
        transform: skew(10deg, 0);
    }

    85% {
        transform: skew(10deg, 0);
        margin-left: 2000px;
    }

    100% {
        margin-left: 2500px;
        display: none;
    }
}

.display-none {
    opacity: 0;
}

.emailRushIn {
    -webkit-animation: emailRushIn 1s;
}

@keyframes emailRushIn {
    0% {
        margin-left: -2500px;
        display: none;
        transform: skew(10deg, 0);
    }

    25% {
        transform: skew(10deg, 0);
    }

    50% {
        transform: skew(10deg, 0);
    }

    75% {
        transform: skew(10deg, 0);
    }

    85% {
        margin-left: 0px;
    }

    86% {
        transform: skew(-10deg, 0);
    }

    90% {
        transform: skew(10deg, 0);
    }

    97.5% {
        transform: skew(10deg, 0);
    }

    100% {
    }
}

.questionFloatComplete {
    -webkit-animation: questionFloatingComplete 1.5s;
}

@keyframes questionFloatingComplete {
    0% {
        transform: rotate(0deg);
    }

    85% {
        transform: rotate(1440deg);
    }

    86% {
        transform: scale(.99);
    }

    95% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}



.pulseLoad {
    -webkit-animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        background-image: linear-gradient(90deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100% );
        background-position: -1500px 0px;
        background-repeat: no-repeat;
    }

    50% {
        background-image: linear-gradient(90deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100% );
        background-repeat: no-repeat;
    }

    100% {
        background-image: linear-gradient(90deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100% );
        background-position: 1500px 0px;
        background-repeat: no-repeat;
    }

    
}

.alertSlide {
    -webkit-animation: alertSlide 1.5s infinite;
}

.alert-danger {
    background-color: #ff524d;
}

.alert-danger p {
    color:white;
}

@keyframes alertSlide {
    0% {
        margin-left:5%;
    }
    25% {
        margin-left: -5%;
    }
    50% {
        margin-left: 5%;
    }
    75% {
        margin-left: -5%;
    }
    100% 
    {
        margin-left: 5%;
    }
}

.panel-heading {
    background-color: #9FB895;
    color: white;
}

.table-bordered {
    width:100%;
}

.table-borderless {
    border: solid 0.05px transparent !important;
}

    .table-borderless tr {
        border: solid 0.05px transparent !important;
    }

    .table-borderless th {
        border: solid 0.05px transparent !important;
    }

        .table-borderless td {
            border: solid 0.05px transparent !important;
        }

    .table-borderless .btn-primary {
        margin-top: 5px;
    }

.Home_Logo {
    width: 300px;
    height: auto;
    margin-bottom:40px;
}

.questorChatMessages {
    height: auto;
}

.currentChatClosed {
    opacity: 0;
}

.currentChatOpen {
    /*    display: block;*/
    opacity: 100;
}


.questorChat {
    position: absolute;
    right: -400px;
    bottom: 30px;
    height: 497px;
    width: 350px;
    max-width: 350px;
    opacity: 10;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    text-align: left;
}

.questorChatShow {
    position: absolute;
    background-color: white;
    right: 30px;
    bottom: 30px;
    height: 497px;
    width: 350px;
    max-width: 350px;
    opacity: 100;
    text-align: left;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    border-radius: 10px !important;
}

.questorChatShowMinimised {
    height: 85px !important;
    border-radius: 15px !important;
}

.questorChatShow:hover {
    /*    border: 2px solid black;*/
}
/*header .w3-container {
    background-color: #9FB895 !important;
}*/
.assuredButtons {
    cursor: pointer;
    text-align: center;
    padding: 20px;
    border: rgb(127,39,122) solid 2px;
    background-color: rgb(127,39,122);
    color: white;
}

.assuredAddress {
    text-align: center;
    padding: 20px;
    height: 372px;
    background-color: rgba(96,97,97,.9);
    color: white;
}

.assuredContact {
    text-align: center;
    height: 236px;
    padding: 20px;
    background-color: rgba(96,97,97,.9);
    color: white;
}

.assuredPersonal {
    text-align: center;
    padding: 20px;
    background-color: rgba(96,97,97,.9);
    color: white;
}

.assuredButtons:hover {
    border: rgb(127,39,122) solid 2px;
    background: white;
    color: rgb(127,39,122) !important;
}

.chatTextAreaHome {
    max-height: 97px;
}

.chatLeft {
    margin-top: 10px;
    max-width: 700px;
    padding: 10px;
    margin-left: 0px;
    background-color: #606161;
    color: white;
    border-radius: 0px 10px 10px 10px !important;
}

.chatRight {
    margin-top: 10px;
    max-width: 700px;
    padding: 10px;
    color: white;
    border-radius: 10px 0px 10px 10px !important;
    background-color: rgba(127,39,122,0.9);
    float: right;
    margin-right: -10px;
}

.claimCompanyChoice {
    padding: 40px;
    width: 100%;
    text-align: center;
    transition-duration: 0.6s;
    background-color: #94b693;
    color: white;
    background-image: linear-gradient(225deg, #94b693 40%, #fff 40% 43%, #94b693 43% 46%, #fff 46% 49%, #94b693 49% 100%);
    background-position: -400px 0px;
    background-repeat: no-repeat;
}

    .claimCompanyChoice:hover {
        width: 110%;
        margin-left: -5%;
        transition-duration: 0.6s;
        color: white;
        background-color: #94b693;
        background-image: linear-gradient(225deg, #94b693 40%, #fff 40% 43%, #94b693 43% 46%, #fff 46% 49%, #94b693 49% 100%);
        background-position: 235px 0px;
        background-repeat: no-repeat;
    }

.header {
    background-color: #ffffff;
    background-image: url(../images/orchard-logo.jpg);
    background-repeat: no-repeat;
    background-position-x: center;
    height: 90px;
    width: 100%;
    z-index: 2;
    opacity: 1;
}

.login {
    background-color: #e0e3e1;
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: -20px;
}

#page-container {
    position: relative;
    min-height: 100vh;
    min-width: 340px;
}

#content-wrap {
    padding-bottom: 120px; /* Footer height */
}

.footer {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 90px;
    background-color: #94b693;
    width:100%;
    text-align: center;

}

.navbar {
    border-radius: 0;
    background-color: #334334;
    z-index: 1;
    color: white !important;
}

.form {
    border: solid 1px #94b693;
    border-radius: 6px;
    padding: 5px;
}

h1 {
    color: #334334;
    font-size: 45px;
}

.ajax-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -32px; /* -1 * image width / 2 */
    margin-top: -32px; /* -1 * image height / 2 */
    display: block;
}

.claimnumber {
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #e0e3e1;
    color: #334334;
    text-align: center;
}

.tinyalert {
    padding: 6px;
    margin: 0;
    margin-top: 5px;
    font-size: small;
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
    border-radius: 3px;
}

.blogresponse {
    background-color: #d9edf7;
    padding: 5px;
    border: 1px solid #bce8f1;
    border-radius: 4px;
}



.home_claims {
    background-color: #334334;
    text-align: center;
    color: #e0e3e1;
    padding: 25px 0px;
    font-size: 25px;
    background-image: linear-gradient(225deg, #334334 40%, #fff 40% 43%, #334334 43% 46%, #fff 46% 49%, #334334 49% 100%);
    background-position: -400px 0px;
    background-repeat: no-repeat;
    transition-duration: 0.5s;
    cursor: pointer;
    height: 136.5px;
}
.home_claims_myTasks {
    background-color: #20281b;
    text-align: center;
    color: #e0e3e1;
    padding: 22px 0px;
    font-size: 25px;
    background-repeat: no-repeat;
    transition-duration: 0.5s;
    cursor: pointer;
    height: 136.5px;
}

    .home_claims:hover {
        background-image: linear-gradient(225deg, #334334 40%, #fff 40% 43%, #334334 43% 46%, #fff 46% 49%, #334334 49% 100%);
        background-position: 130px 0px;
        transition-duration: 0.5s;
    }

.home_welcome {
    background-image: url('../images/ColouredLogoIcon.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 125px auto;
    background-position: 100% 0px;
    padding: 35px;
}
@media (max-width: 650px) {
    .home_welcome {
        background-size: 75px auto;
    }
}

.home_claims1 {
    background-color: #e0e3e1;
    text-align: center;
    color: #334334;
    padding: 20px;
    font-size: 25px;
    background-image: linear-gradient(225deg, #e0e3e1 40%, #fff 40% 43%, #e0e3e1 43% 46%, #fff 46% 49%, #e0e3e1 49% 100%);
    background-position: -400px 0px;
    background-repeat: no-repeat;
    transition-duration: 0.5s;
    cursor: pointer;
}

    .home_claims1:hover {
        background-image: linear-gradient(225deg, #e0e3e1 40%, #fff 40% 43%, #e0e3e1 43% 46%, #fff 46% 49%, #e0e3e1 49% 100%);
        background-position: 200px 0px;
        transition-duration: 0.5s;
    }

.todo {
    font-size: 0.5em;
}

.chatLeft {
    margin-top: 10px;
    max-width: 700px;
    padding: 10px;
    margin-left: 0px;
    background-color: #476E3E;
    color: white;
    border-radius: 0px 10px 10px 10px !important;
}

.chatRight {
    margin-top: 10px;
    max-width: 700px;
    padding: 10px;
    color: white;
    border-radius: 10px 0px 10px 10px !important;
    background-color: #36432D;
    float: right;
    margin-right: -10px;
}

.home_claims2 {
    background-color: #94b693;
    text-align: center;
    color: white;
    background-image: linear-gradient(225deg, #94b693 40%, #fff 40% 43%, #94b693 43% 46%, #fff 46% 49%, #94b693 49% 100%);
    background-position: -200px 0px;
    background-repeat: no-repeat;
    transition-duration: 0.5s;
    cursor: pointer;
    padding: 20px 0px;
}

    .home_claims2:hover {
        color: #94b693;
        background-color: white;
        transition-duration: 0.5s;
    }

.shadowBox {
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.btn-primary {
    background-color: #334334;
    color: white;
    width: 100%;
    transition-duration: 0.5s;
    border: none;
    margin-bottom: 10px;
}

.form-control {
    margin-bottom:10px;
}

    .btn-primary:active {
        background-color: #36432d;
        border: none;
    }

    .btn-primary:hover {
        background-color: #476e3e;
        color: white;
        width: 100%;
        transition-duration: 0.5s;
        border: none;
    }

/* Change some bootstrap styles */
.breadcrumb > .active {
    color: red;
}

.home_text {
    font-size: 1em;
    color: #476E3E;
}

.customer-message-box {
    z-index: 9999;
    background-color: white;
    padding: 10px;
    overflow:hidden;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.customer-message-box .innerMessageContainer {
    display: block;
}
.body-under-overlay{
    overflow-y:hidden;
}

.messageContainer.fullscreen {
    z-index: 9999;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(39,62,84,0.82);
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.messageContainer.fullscreen table{
    background-color:white;
}
.messageBox {
    height: 394px;
    max-height: 394px;
    overflow-y: scroll;
    padding: 10px;
    padding-left: 30px;
    overflow-x: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.messageBox.fullscreen {
    width: 100%;
    max-height: 100% !important;
    /*    height:100% !important;
        */ overflow-y: auto !important;
    padding-left: 10px !important;
    padding-top: 40px !important;
}
.innerMessageContainer.fullscreen{
    overflow-y:auto !important;
}
.message-box-container.fullscreen{
    padding:0!important;
}
.chatLeft.fullscreen {
    max-width: 100% !important;
    width: 100%;
}
.chatRight.fullscreen {
    max-width: 100% !important;
    width: 100%;
}
.expand-glyph-container .glyphicon {
    cursor: pointer;
}
.expand-glyph-container.fullscreen {
    background-color: #334334;
    border-radius: 5px;
    position: fixed;
    top: 0;
    padding: 5px;
    z-index: 10;
}

.communications-glyph.fullscreen {
    margin-top:0!important;
}
.messageShow {
    position: fixed;
    right: 0px;
    top: 50%;
    padding: 60px 5px;
    color:white;
    background-color: #36432D;
    border-radius: 10px 0px 0px 10px;
    cursor:pointer;
}
.create-message-container.fullscreen{
    position:fixed;
    bottom:0;
    width: 100%;
}
.message-text-container.fullscreen{
    padding:0!important
}

.newMessage {
    animation: newMessageSlide 3s infinite;
}

@keyframes newMessageSlide {
     20%, 40%, 60%, 80%{
        padding: 70px 5px;
        margin-top:-5px;
    }
    0%, 10%, 30%, 50%, 70%, 90%, 100% {
        padding: 60px 5px;
        margin-top: 0px;
    }
}

.customer-message-box .messageBox {
    background-color: white;
}

    .customer-message-box h4 span {
        float: right;
        cursor: pointer;
    }

.customer-message-box-hidden {
    right:-500px;
}
.customer-message-box-hidden .innerMessageContainer {
    display:none;
}

.customer-message-box-hidden h4 span {
    margin-top: -5px;
    margin-bottom:5px;
    margin-right: 3px;
}

    .customer-message-box-hidden h4 span i {
        cursor:pointer;
    }
        /* Hide/rearrange for smaller screens */
        @media screen and (max-width: 767px) {
            /* Hide captions */
            .carousel-caption {
                display: none;
            }
        }

        @media (max-width: 680px) {
            .Home_Logo {
                width:85%;
                height:auto;
                margin-top:50px;
            }
        }
        @media (min-width: 681px) {
            .Home_Logo {
                width: 500px;
                height: auto;
                margin-top: 100px;
                margin-bottom: 40px;
            }
        }

        @media (min-width: 279px ) and (min-height: 652px) {
            .home_text h3 {
                margin-top: 400px;
                font-size: 2.4em;
            }
        }

        @media (min-width: 319px ) {

            .home_text h3 {
                margin-top: 500px;
                font-size: 2.4em;
            }
        }


        @media (min-width: 360px) {
        }

        @media (min-width: 375px) {
            .home_text h3 {
                margin-top: 600px;
                font-size: 2.4em;
            }
        }

        @media (min-width: 411px) {

            .home_text h3 {
                margin-top: 600px;
                font-size: 2.4em;
            }
        }


        @media (min-width: 590px) {


            .home_text h3 {
                margin-top: 20px;
                font-size: 2.4em;
            }
        }



        @media (min-width: 768px) {

            .home_text h3 {
                margin-top: 400px;
                font-size: 2.4em;
            }
        }

        @media (min-width: 1024px) and (min-height: 768px) {

            .home_text h3 {
                margin-top: 20px;
                font-size: 2.4em;
            }
        }

        @media (min-width: 1024px) and (min-height: 1365px) {

            .home_text h3 {
                margin-top: 400px;
                font-size: 2.4em;
            }
        }

        @media (min-width: 1366px) {

            .home_text h3 {
                margin-top: 600px;
                font-size: 2.4em;
            }
        }

        @media (min-width: 1370px) {


            .home_text h3 {
                font-size: 2em;
                margin-top: 0px;
            }
        }

        a {
            cursor:pointer;
        }

.pagination-element {
    display: inline-block;
    padding: 5px;
    width: 75%;
    margin-left: 12.5%;
    background-color: #E8E8E8;
    border-radius: 12px;
}

.pagination-element a {
    color: black;
    float: left;
    padding: 2px 8px;
    border-radius: 20px;
    background-color: white;
    text-decoration: none;
    font-size: 10px;
    margin-left:10px;
}

.pagination-element a.active {
    background-color: #36432D;
    color: white;
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 25% auto;
    border-radius: 50%;
    border: 6px solid #36432D;
    border-color: #36432D transparent #36432D transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.8);
    z-index: 999;
    opacity: 1;
    transition: all 0.5s;
}

.lds-dual-ring.hidden {
    display: none;
}
.claim-initiation-container {
    border: 2px solid #476e3e;
    border-radius: 10px;
    border-radius: 100px;
    padding: 40px;
}

.orchard-content-border {
    border: 1px solid #476e3e;
    border-radius: 10px;
    padding:10px;
}

.p-n{
    padding: 0!important;
}
.m-n{
    margin:0!important;
}
.document {
    border-bottom: 1px solid #eee;
}
.flex-container {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */

    justify-content: center;
    align-items: center;
}
@media (max-width:450px) {
    .flex-container{
        display:block;
    }
}
.fi {
    margin-left: 5px;
    font-size: 24px;
}

.table-bordered {
    border-color: #476e3e !important;
}

.table-bordered tbody tr:first-child th, .table-bordered thead tr:first-child th {
    background-color: #476e3e !important;
    color: white;
    border: solid 1px #334334 !important;
}

.table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th {
    border: solid 1px #476e3e
}
.table-bordered tr:nth-of-type(odd) { 
    background: #e9e9e9
}

.table-bordered > thead > tr > th {
    border: solid 1px #476e3e
}

.horizontal-headers > tbody > tr > td:first-child{
    font-weight:bold;
}
.pivot-table > tbody > tr > th {
    background-color: #476e3e !important;
    color: white;
    border: solid 1px #334334 !important;
}
/*.table-bordered tr:hover {
    background-color: #476e3e;
    color:white;
}*/
.table-header-col {
    background-color: #476e3e !important;
    color: white;
    border: solid 1px #334334 !important;
}
.email-icon{
    float:right !important;
}
.communications-glyph {
    vertical-align: middle;
    background-color: white;
    padding: 5px;
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 5px;
}
#filter-container {
    border: 2px solid #334334;
    padding:10px;
}
.navbar-right{
    margin-right: 0px!important;
}
.navbar-container{
    margin-right:25px;
    margin-left:25px;
}
.attachment-icon {
    float: right;
    margin-right: 10px;
}
.unread-messages {
    border: 6px solid #334334;
    border-radius: 10px;
    background-color: #334334;
    color: white;
}