.progress-animate {
    -webkit-animation: progress-bar-stripes 2s linear infinite !important;
    -o-animation: progress-bar-stripes 2s linear infinite !important;
    animation: progress-bar-stripes 2s linear infinite !important;
}

.progress-bar-success {
    background-color: #11c15b;
}

.table-div-height {
    max-height: 320px;
    overflow-x: auto;
}

.text-align-r {
    text-align: right;
}

.td-text-align-r {
    text-align: right;
    width: 10%;
}

.vm-action-ul {
    position: absolute;
    top: -10px !important;
}

.tfoot-no-data {
    text-align: center;
    color: red;
    font-size: inherit;
}

.service-ul {
    padding: 0px;
    margin-right: 20px;
}

.service-li-title {
    list-style: none;
    font-weight: bold;
}

.service-li-data {
    list-style: none;
    margin-left: 22px;
}

.cloud-card {
    margin: 0px !important;
    padding: 0px !important;
}

.cloud-card-header-gray {
    background-color: #eee;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
    border: 1px solid #d7dfe2;
}

.cloud-card-header-white {
    background-color: #fff;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
    border: 1px solid #d7dfe2;
}

.a-m {
    margin: 5px;
}

.hr {
    border-top: 2px solid #eeeeee !important;
}

.zone-list {
    display: block;
    background-color: #f7fafb;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.highcharts-credits {
    display: none !important;
}

.a_diasbled {
    cursor: not-allowed !important;
    pointer-events: none !important;
    color: darkgray !important;
}

/**  =====================
      Invoice css start
==========================  **/
.invoice-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*margin-bottom: 30px;*/
    padding-top: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.invoice-table {
    border-left: 1px solid #fff;
    padding-left: 20px;
}

    .invoice-table td,
    .invoice-table th {
        border-top: none;
        padding: 3px 0;
    }

    .invoice-table > tbody > tr:last-child > td,
    .invoice-table > tfoot > tr:last-child > td {
        padding-bottom: 0;
    }

.invoice-box h1 {
    font-size: 7rem;
}

.invoice-order {
    padding-left: 0;
}

    .invoice-order th:first-child {
        padding-left: 0;
        width: 80px;
    }

.invoice-detail-table th:first-child {
    width: 450px;
    text-align: left;
}

.invoice-detail-table thead th {
    text-align: center;
}

.invoice-detail-table td {
    vertical-align: middle;
    text-align: center;
}

    .invoice-detail-table td:first-child {
        text-align: left;
    }

.invoice-total {
    background: #f3f3f3;
    padding: 30px 0;
}

    .invoice-total td,
    .invoice-total th {
        text-align: right;
    }

    .invoice-total td {
        padding-left: 30px;
    }

.invoive-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

    .invoive-info h6 {
        margin-bottom: 20px;
        text-transform: uppercase;
        font-weight: 500;
        color: #757575;
    }

.invoice-total tbody {
    padding-right: 20px;
    float: right;
}

.dropdown-menu i {
    margin-right: 5px;
}

.table-borderless {
    border: none !important;
    padding: 0px !important;
}

    .table-borderless td {
        border: none !important;
        padding: 0px !important;
    }

    .table-borderless th {
        border: none !important;
        padding: 0px !important;
    }

.modal-ext {
    width: 70% !important;
}
/**====== Invoice css end ======**/
.border-1-px-red {
    border: 1px solid red;
}
/*Margin CSS start*/
.c-margin-r-5{
    margin-right:5px !important;
}
.c-margin-l-5 {
    margin-left: 5px !important;
}
.c-margin-r-10 {
    margin-right: 10px !important;
}
.c-margin-l-10 {
    margin-left: 10px !important;
}
.c-margin-r-15 {
    margin-right: 15px !important;
}
.c-margin-l-15 {
    margin-left: 15px !important;
}
.c-margin-r-20 {
    margin-right: 20px !important;
}
.c-margin-l-20 {
    margin-left: 20px !important;
}
.c-margin-r-25 {
    margin-right: 25px !important;
}

.c-margin-l-25 {
    margin-left: 25px !important;
}
.c-minus-margin-l-15 {
    margin-left: -15px !important;
}
/*Margin CSS end*/

.tooltip-inner {
    max-width: 100%;
    /* If max-width does not work, try using width instead */
    width: 100%;
}
/*Show Hide Dot start*/
.loading-dots {
    text-align: center;
    z-index: 5;
}

.dot {
    display: inline;
    margin-left: 0.2em;
    margin-right: 1px;
    position: relative;
    top: 0;
    font-size: 2em;
    color:orangered;
    opacity: 0;
    animation: showHideDot 2.5s ease-in-out infinite;
}

.dot-one {
    animation-delay: 0.2s;
}

.dot-two {
    animation-delay: 0.4s;
}

.dot-three {
    animation-delay: 0.6s;
}

@keyframes showHideDot {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/*Show Hide Dot end*/
