
.animate-color-change {
    -webkit-animation: color-change 3s infinite;
    -moz-animation: color-change 3s infinite;
    -o-animation: color-change 3s infinite;
    -ms-animation: color-change 3s infinite;
    animation: color-change 3s infinite;
}

@-webkit-keyframes color-change {
    0% {
        color: black;
    }

    30% {
        color: blue;
    }

    60% {
        color: yellow;
    }

    100% {
        color: black;
    }
}

@-moz-keyframes color-change {
    0% {
        color: black;
    }

    30% {
        color: blue;
    }

    60% {
        color: yellow;
    }

    100% {
        color: black;
    }
}

@-ms-keyframes color-change {
    0% {
        color: black;
    }

    30% {
        color: blue;
    }

    60% {
        color: yellow;
    }

    100% {
        color: black;
    }
}

@-o-keyframes color-change {
    0% {
        color: black;
    }

    30% {
        color: blue;
    }

    60% {
        color: yellow;
    }

    100% {
        color: black;
    }
}

@keyframes color-change {
    0% {
        color: black;
    }

    30% {
        color: blue;
    }

    60% {
        color: yellow;
    }

    100% {
        color: black;
    }
}


.noClick {
    pointer-events: none;
}

.smallBorder {
    position: relative;
}

    .smallBorder:before {
        content: "";
        position: absolute;
        left: 0;
        top: 15px;
        height: 55px;
        border-left: 2px solid #ADB2B5;
        margin-top: 15%;
    }


.smallBorderBlue {
    position: relative;
}

    .smallBorderBlue:before {
        content: "";
        position: absolute;
        left: 0;
        top: 5px;
        height: 55px;
        border-left: 2px solid #00aadd;
        margin-top: 15%;
    }

.nodataFound {
    color: rgba(217, 83, 79, 0.70);
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.disabledBtn {
    pointer-events: none;
    opacity: 0.4;
}


.input-readonly {
    background-color: #c6d4dd !important;
}

.ui-select div {
    background-color: white !important;
}


.emailForm {
    width: 100%;
    height: 80%;
}

.validEmail {
    background-color: #f7f7f7;
    border: 0.5px solid #e4e4e4;
    border-radius: 5px;
}

.emailInput {
    margin-bottom: 5px;
    border: none;
    outline: 0 !important;
    outline: none !important;
    width: auto;
    margin-left: 3px;
    display: table-cell;
    width: 100%;
}


.pageLoadSpinner {
    position: fixed;
    z-index: 99999;
    display: none;
}


.disablePage {
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 99999;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}


.spinner-progressing {
    background-color: whitesmoke;
    opacity: 0.8;
    letter-spacing: 1.5px;
}


* {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -moz-touch-callout: none;
    -ms-touch-callout: none;
    -ms-touch-select: none;
}

input {
    -webkit-user-select: auto !important;
    -khtml-user-select: auto !important;
    -moz-user-select: initial !important;
    -ms-user-select: initial !important;
    user-select: initial !important;
    -ms-touch-select: initial !important;
}


.pageHeader {
    height: 41px !important;
    background-color: #dfe3ee !important;
}

[data-role="footer"] td {
    height: 45px !important;
    border-radius: 0px !important;
}




select {
    width: 100% !important;
}




.myDisabled {
    opacity: 0.7 !important;
}

.numberInputReadOnly {
    border: 0;
    text-align: right;
    width: 100%;
    color: black;
}

/* The Modal (background) */
.modalClass {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999999; /* Sit on top */
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
}

/* Modal Content */
.mymodal-content {
    background-color: #fefefe;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    /*padding: 20px;*/
    border: 1px solid #888;
    width: 80%;
    height: 70%;
}

    .mymodal-content.small {
        height: 50%;
    }

    .mymodal-content .listContainer {
        height: calc(100% - 95px);
    }

.mycontainer {
    padding: 5px 5px;
}

.ui-state-disabled {
    opacity: 1.0 !important;
}

.no-corners {
    border-radius: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.top-bottom-margin {
    margin: 0.5em 0;
}

#custom-search-input {
    padding: 3px;
    border-radius: 6px;
    background-color: #fff;
}

    #custom-search-input input {
        border: 0;
        box-shadow: none;
    }

    #custom-search-input button {
        margin: 2px 0 0 0;
        background: none;
        box-shadow: none;
        border: 0;
        color: #666666;
        padding: 0 8px 0 10px;
    }

        #custom-search-input button:hover {
            border: 0;
            box-shadow: none;
            border-left: solid 1px #ccc;
        }

    #custom-search-input .glyphicon-search {
        font-size: 23px;
    }


.numberCol {
    text-align: right !important;
}

td.numberCol {
    padding: .5em .7em !important;
}


.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 25px;
    display: none;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    opacity: 0.3;
    border-radius: 100%;
    /*background-color:transparent*/
}

.load-more {
    cursor: pointer;
    /*position: fixed;
    bottom: 25px;   
    right: 5%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);*/
    position: center;
    opacity: 0.6;
    border-radius: 100%;
    /*background-color:transparent*/
}


.tablesaw-modeswitch {
    display: none !important;
}

/*
Timeline css
*/

.timelineContainer {
    /*overflow-y:auto;
    height: 500px;*/
}

.timeline {
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
}

    .timeline:before {
        top: 0;
        bottom: 0;
        position: absolute;
        content: " ";
        width: 3px;
        background-color: #eeeeee;
        left: 50%;
        margin-left: -1.5px;
    }

    .timeline > li {
        margin-bottom: 5px;
        position: relative;
    }

        .timeline > li:before, .timeline > li:after {
            content: " ";
            display: table;
        }

        .timeline > li:after {
            clear: both;
        }

        .timeline > li:before, .timeline > li:after {
            content: " ";
            display: table;
        }

        .timeline > li:after {
            clear: both;
        }

        .timeline > li > .timeline-panel {
            width: 44%;
            float: left;
            border: 1px solid #d4d4d4;
            border-radius: 2px;
            padding: 5px 10px;
            position: relative;
            -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.175);
            box-shadow: 0 3px 7px rgba(0, 0, 0, 0.175);
        }

            .timeline > li > .timeline-panel:before {
                position: absolute;
                top: 26px;
                right: -15px;
                display: inline-block;
                border-top: 15px solid transparent;
                border-left: 15px solid #ccc;
                border-right: 0 solid #ccc;
                border-bottom: 15px solid transparent;
                content: " ";
            }

            .timeline > li > .timeline-panel:after {
                position: absolute;
                top: 27px;
                right: -14px;
                display: inline-block;
                border-top: 14px solid transparent;
                border-left: 14px solid #fff;
                border-right: 0 solid #fff;
                border-bottom: 14px solid transparent;
                content: " ";
            }

        .timeline > li > .timeline-badge {
            color: #fff;
            width: 50px;
            height: 50px;
            line-height: 50px;
            font-size: 1.2em;
            text-align: center;
            position: absolute;
            top: 16px;
            left: 50%;
            margin-left: -25px;
            background-color: #999999;
            border-top-right-radius: 50%;
            border-top-left-radius: 50%;
            border-bottom-right-radius: 50%;
            border-bottom-left-radius: 50%;
        }

        .timeline > li.timeline-inverted > .timeline-panel {
            float: right;
        }


        .timeline > li.timeline-datelabel {
            text-align: center;
            font-size: 1.0em;
            color: #777;
            margin-top: 15px;
            margin-bottom: 15px;
        }

.timeline-timestamp {
    font-size: 0.7em !important;
    color: #777 !important;
    margin: 0px !important;
}

.timeline-duration {
    font-size: 0.7em !important;
    color: #337ab7 !important;
    margin: 0px !important;
}

.timeline-actiontype {
    font-size: 0.7em !important;
    color: #777 !important;
    margin: 0px !important;
}

.timeline-person-icon {
    font-size: 0.9em !important;
}

.timeline-person {
    font-size: 0.9em !important;
}

.timeline-address-icon {
    font-size: 0.7em !important;
}

.timeline-address {
    font-size: 0.7em !important;
}

.timeline-badge-icon {
    font-size: 1.1em;
}

.timeline-button {
    line-height: 0.9em !important;
    min-width: 4.0em;
    margin-left: 5px !important;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}

.timeline-badge.primary {
    background-color: #2e6da4 !important;
    border-color: #2e6da4 !important;
}

.timeline-badge.success {
    background-color: #3f903f !important;
    border-color: #3f903f !important;
}

.timeline-badge.warning {
    background-color: #f0ad4e !important;
    border-color: #f0ad4e !important;
}

.timeline-badge.danger {
    background-color: #d9534f !important;
    border-color: #d9534f !important;
}

.timeline-badge.info {
    background-color: #5bc0de !important;
    border-color: #5bc0de !important;
}

.timeline-title {
    margin-top: 0;
    color: inherit;
}

.timeline-body {
    margin-top: 3px;
}

    .timeline-body > p, .timeline-body > ul {
        margin-top: 3px;
    }

        .timeline-body > p + p {
            margin-top: 5px;
        }

    .timeline-body .timeline-body-info {
        float: left;
        width: calc(100% - 50px);
    }

    .timeline-body .timeline-body-btns {
        float: left;
        width: 50px;
        margin-bottom: 10px;
    }

@media (max-width: 1000px) {
    ul.timeline:before {
        left: 40px;
    }

    ul.timeline > li > .timeline-panel {
        width: calc(100% - 70px);
        /*width: -moz-calc(100% - 90px);
        width: -webkit-calc(100% - 90px);*/
    }

    ul.timeline > li > .timeline-badge {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 0.9em;
        left: 25px;
        margin-left: 0;
        top: 27px;
    }

    ul.timeline > li > .timeline-panel {
        float: right;
    }

    .timeline-datelabel {
        text-align: left !important;
    }

    ul.timeline > li > .timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
    }

    ul.timeline > li > .timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
    }

    .timeline-badge-icon {
        font-size: 0.9em;
    }
}


::-webkit-scrollbar {
    -webkit-appearance: none;
}

    ::-webkit-scrollbar:vertical {
        width: 6px;
    }

    ::-webkit-scrollbar:horizontal {
        height: 3px;
    }

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.mandatoryWarning {
    border-color: red !important;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid white;
}

.yScroll {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.allScroll {
    overflow: auto !important;
}

.iosScroll {
    -webkit-overflow-scrolling: touch !important;
}

.xScroll {
    overflow-x: auto !important;
    overflow-y: hidden !important;
}

/*Grow Transition Element*/
.grow {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .grow.doGrow {
        -webkit-transform: scale(10.5);
        -ms-transform: scale(10.5);
        transform: scale(10.5);
    }


#gmapDiv, #directionsPanel {
    height: 100%;
    width: 100%;
}

#directionsPanel {
    display: none;
    height: 0;
    -webkit-transition: height 0.5s linear; /* Safari */
    transition: height 0.5s linear;
    font-size: 0.8em;
}

    #directionsPanel.showDirections {
        display: block;
        height: 100%;
    }




@media only screen and (min-width: 768px) {
    #gmapDiv {
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transition: width 0.5s linear; /* Safari */
        transition: width 0.5s linear;
    }

        #gmapDiv.showDirections {
            width: 60%;
        }

    #directionsPanel {
        display: block;
        position: absolute;
        top: 0;
        width: 40%;
        right: 100%;
        -webkit-transition: height 0.1s linear, right 0.5s linear; /* Safari */
        transition: height 0.1s linear, right 0.5s linear;
    }

        #directionsPanel.showDirections {
            right: 0;
        }
}

/*#directionsPanel{padding:0px;position:relative;top:-1em;left:2em;margin-left:400px;margin-right:-15.33em;}
@media print{div#mapcontainer.validhints div.googlemap{left:0px;}
#directionsPanel{left:0px;margin-right:0px;}
}
#directionsPanel div{background:transparent !important;}
#directionsPanel div[jsdisplay=walking] div, #directionsPanel div[jsdisplay=walking] div b{background:#eb6d09 !important;color:#ffffff;}
#directionsPanel table:first-child{background:#dcdcdc !important;border-color:#eb6d09 !important;}*/
#directionsPanel table {
    width: 100%;
}

#directionsPanel tr:nth-child(odd) td {
    background: rgba(187, 205, 211, 0.3);
}


.slick-list {
    width: 100%;
    height: 100%;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

.slick-track {
    height: 100%;
}


.calendarMain {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.calendarSections {
    position: relative;
    width: 100%;
    height: 100%;
    /*float: left;*/
}

.slick-slide {
    outline: none !important;
    outline: 0 !important;
}

    .slick-slide:focus {
        outline: none !important;
        outline: 0 !important;
    }

    .slick-slide * {
        outline: none !important;
        outline: 0 !important;
    }

/*.calendarSections.a {
        background-color: red;
    }

    .calendarSections.b {
        background-color: blue;
    }

    .calendarSections.c {
        background-color: black;
    }

    .calendarSections div {
        text-align: center;
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100px;
        height: 100px;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }*/


.mapInfoChartFiI2 {
    width: 50px;
    transition: transform 0.1s linear;
    -webkit-transition: transform 0.1s linear;
}

    .mapInfoChartFiI2.rotate {
        transform: rotate(100deg);
        -webkit-transform: rotate(100deg);
    }

.tableChartInfoCells {
    padding: 0;
    margin-top: 10px;
    font-size: 85%;
}

    .tableChartInfoCells .row:first-child {
        text-align: center;
    }

.td-nowrap tbody td {
    white-space: normal !important;
}

.avoid-clicks {
    pointer-events: none;
    opacity: 0.5;
}


/*     Loader     */
.sync-lds-roller {
    display: inline-block;
    position: relative;
    width: 22px;
    height: 22px;
    transform: scale(0.3);
    vertical-align: top;
}

    .sync-lds-roller div {
        animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        transform-origin: 40px 40px;
    }

        .sync-lds-roller div:after {
            content: " ";
            display: block;
            position: absolute;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: black;
            margin: -4px 0 0 -4px;
        }

        .sync-lds-roller div:nth-child(1) {
            animation-delay: -0.036s;
        }

            .sync-lds-roller div:nth-child(1):after {
                top: 63px;
                left: 63px;
            }

        .sync-lds-roller div:nth-child(2) {
            animation-delay: -0.072s;
        }

            .sync-lds-roller div:nth-child(2):after {
                top: 68px;
                left: 56px;
            }

        .sync-lds-roller div:nth-child(3) {
            animation-delay: -0.108s;
        }

            .sync-lds-roller div:nth-child(3):after {
                top: 71px;
                left: 48px;
            }

        .sync-lds-roller div:nth-child(4) {
            animation-delay: -0.144s;
        }

            .sync-lds-roller div:nth-child(4):after {
                top: 72px;
                left: 40px;
            }

        .sync-lds-roller div:nth-child(5) {
            animation-delay: -0.18s;
        }

            .sync-lds-roller div:nth-child(5):after {
                top: 71px;
                left: 32px;
            }

        .sync-lds-roller div:nth-child(6) {
            animation-delay: -0.216s;
        }

            .sync-lds-roller div:nth-child(6):after {
                top: 68px;
                left: 24px;
            }

    .sync-lds-roller:nth-child(7) {
        animation-delay: -0.252s;
    }

    .sync-lds-roller div:nth-child(7):after {
        top: 63px;
        left: 17px;
    }

    .sync-lds-roller div:nth-child(8) {
        animation-delay: -0.288s;
    }

        .sync-lds-roller div:nth-child(8):after {
            top: 56px;
            left: 12px;
        }

@keyframes sync-lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*   End Loader   */

/*.loaderContainer {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}*/



/* counter css*/
#SyncdownloadCounter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9;
}

#SyncdownloadCircle1 {
    height: 145px;
    width: 145px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    border: 7.5px solid #e7e0e0;
}

#SyncdownloadCircle2 {
    height: 160px;
    width: 160px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}

.SyncdownloadCounterContainer {
    position: relative;
    height: 170px;
    width: 170px;
    margin: 15px auto;
}


/*end counter*/

.syncDivContainer {
    display: flex;
    flex-direction: column;
    height: calc(100% - 34px - 34px);
}

.syncDivRight,
.syncDivLeft {
    width: 49%;
    display: inline-block;
    box-sizing: border-box;
}

.syncDivRight {
    padding: 29px 25px 0;
}

.syncDivCounterContainer,
.syncDivMessagesContainer {
    height: calc(100% - 150px);
}

#messages-counter span {
    width: 25px;
    height: 40px;
    background-color: #cfebf6;
    display: inline-block;
    font-size: 22px;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
}

.syncDivLeft {
    padding: 0 15px;
    vertical-align: top;
}

.syncDivProcessInfoContainer {
    padding: 25px 0;
    padding-bottom: 0;
}

    .syncDivProcessInfoContainer label {
        font-weight: bold;
    }

#hidden-messages-modal {
    position: absolute;
    width: 95%;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 100;
    background-color: white;
}

.isHidden {
    display: none;
}

.syncDivProcessInfoContainer label {
    display: inline-block;
}

.btn-disable {
    pointer-events: none;
}

.syncDivProcessInfoContainer span {
    font-weight: normal;
}

#syncList li:before {
    content: '\f00c';
    display: inline-block;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none !important;
    speak: none;
    display: inline-block;
    text-decoration: none;
    width: 1em;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    color: green;
    margin-right: 5px;
}

#syncList h5 {
    display: inline-block;
    margin: 8px 0;
}

#syncList li {
    word-break: break-all;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#syncMsgsTitle {
    font-weight: bold;
    background-color: #e7e0e0;
    height: 40px;
    line-height: 40px;
}

#syncList {
    padding: 0 15px;
    list-style: none;
}

#syncTitle {
    font-weight: bold;
    padding: 12px;
    background-color: #cfebf6;
}

#msg-container {
    height: 100px;
    overflow: hidden;
}

@media only screen and (max-width: 500px) {
    .syncDivRight, .syncDivLeft {
        width: 100%;
    }

    #syncDbPop .syncListDiv {
        margin-top: 0;
    }

        #syncDbPop .syncListDiv:after {
            top: 0 !important;
            left: 0 !important;
        }
}
