﻿body {
    margin: 0;
}

/* font family code starts here*/
@font-face {
    font-family: 'Roboto-Regular';
    src: url('../Fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url('../Fonts/Roboto-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('../Fonts/Roboto-Bold.ttf') format('truetype');
}
/* font family code ends here*/

/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/

.fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 99;
    background-color: #fff !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.C_Align {
    text-align: center;
}

.eCRM-logo img {
    width: 72px;
    padding: 5px 0px;
}

.eCRM-title h1 {
    font-family: Roboto-Bold;
    color: #e47614;
    margin: 0px;
    font-size: 35px;
    padding: 22px 0px;
}

    .eCRM-title h1 span {
        color: #000;
        font-size: 16px;
        font-family: Roboto-Medium;
    }

.top-contact {
    margin: 5px 0px 5px -40px;
    text-align: right;
}

    .top-contact li {
        display: inline-block;
        padding: 0px 0px 0px 10px;
    }

        .top-contact li i {
            padding: 0px 5px 0px 0px;
            color: #e47614;
        }

        .top-contact li a {
            color: #1e1e1e;
            transition: all 0.5s;
        }

            .top-contact li a:hover {
                color: #e47614;
            }

            .top-contact li a i {
                color: #25D366;
                font-size: 20px;
                font-weight: 500;
            }

.eCRM-date-time {
    text-align: right;
    margin: 10px 0px;
    font-size: 14px;
}

    .eCRM-date-time span:nth-child(1) {
        background-color: #fbe4d0;
        padding: 5px 10px;
        border-radius: 5px;
        border: 1px solid #f5bc8a;
    }

    .eCRM-date-time i {
        color: #e47614;
    }

.fixed-ht {
    height: 104px;
}

.eCRM-home-banner-bg {
    overflow: hidden;
    animation: change-background 10s ease infinite;
    width: 100%;
    height: 100vh;
}

/* Keyframes */
@keyframes change-background {
    0% {
        background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../Images/General/eCRM-Slider-01.jpg);
        background-position: center;
        background-size: cover;
    }

    25% {
        background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../Images/General/eCRM-Slider-02.jpg);
        background-position: center;
        background-size: cover;
    }

    50% {
        background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../Images/General/eCRM-Slider-03.jpg);
        background-position: center;
        background-size: cover;
    }

    75% {
        background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../Images/General/eCRM-Slider-04.jpg);
        background-position: center;
        background-size: cover;
    }

    100% {
        background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../Images/General/eCRM-Slider-01.jpg);
        background-position: center;
        background-size: cover;
    }
}
/* Keyframes */

.eCRM-slider {
    width: 100%;
    height: 85vh;
    text-align: center;
}

    .eCRM-slider tr td {
        vertical-align: middle;
    }

        .eCRM-slider tr td h1 {
            color: #fff;
            margin: 0px 0px 10px;
            font-size: 50px;
            font-family: Roboto-Medium;
        }

            .eCRM-slider tr td h1 span {
                color: #e47614;
                font-size: 35px;
            }

.eCRM-home-login {
    width: 100%;
    height: 80vh;
}

    .eCRM-home-login tr td {
        vertical-align: middle;
    }

.eCRM-login-div {
    background-color: rgba(0,0,0,0.7);
    border: 1px solid #e47614;
    margin: 30px 60px;
    padding: 20px;
    border-radius: 10px;
}

    .eCRM-login-div h3 {
        margin: 0px 0px 10px;
        color: #e47614;
        font-family: Roboto-Medium;
        font-size: 23px;
    }

    .eCRM-login-div h6 {
        margin: 0px 0px 10px;
        font-size: 30px;
        color: #e47614;
        text-align: center;
    }

    .eCRM-login-div h5 {
        margin: 0px 0px 10px;
        color: #e47614;
        font-family: Roboto-Regular;
        font-size: 15px;
    }

.eCRM-login-txtbx {
    font-family: Roboto-Regular;
    border: 1px solid #fff;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    padding: 5px;
    width: 100%;
    border-radius: 5px;
    transition: all 0.5s;
}

    .eCRM-login-txtbx:focus {
        border: 1px solid #e47614;
    }

.eCRM-login-btn {
    font-family: Roboto-Regular;
    border: 1px solid #e47614;
    background-color: #e47614;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.5s;
}

    .eCRM-login-btn:hover {
        background-color: #000;
    }

.gray-bg {
    background-color: #f1f1f1;
    padding: 20px 0px;
}

.productFeature img {
    width: 55px;
    margin: 10px 0px 5px;
}

.productFeature p {
    font-size: 14px;
    line-height: 18px;
    color: #000;
}

.footer-width {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
    width: 20%;
}

.ftitle {
    margin: 0px 0px 5px;
    font-family: Roboto-Regular;
    color: #fcb92d;
    font-size: 14px;
}

.flist {
    margin: 0px 0px 10px 0px;
    font-size: 14px;
}

.flist-master {
    margin: 0px 0px 10px -40px;
}

.flist li {
    list-style-type: none;
    padding: 2px 0px;
}

    .flist li i {
        padding-right: 5px;
        color: #e47614;
    }

    .flist li a {
        color: #fff;
        transition: all 0.5s;
    }

        .flist li a:hover {
            color: #fcb92d;
        }

.eCRM-follow a {
    color: #fff;
    font-size: 25px;
    padding-right: 5px;
    transition: all 0.5s;
}

    .eCRM-follow a:hover {
        color: #fcb92d;
    }

.msme img {
    width: 85px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 5px;
    margin: 10px 0px 0px;
}

.copy {
    color: #fff;
    margin: 5px 0px;
    font-size: 14px;
}

    .copy a {
        color: #fff;
        transition: all 0.5s;
    }

        .copy a:hover {
            text-decoration: underline;
        }

.master-ticket-list {
    list-style-type: none;
    margin: 0px 0px 0px -40px;
    text-align: right;
}

    .master-ticket-list li {
        display: inline-block;
    }

.master-menu-bg {
    background-color: #e47614;
}

.eCRM-welcome {
    margin: 5px 0px;
    color: #fff;
}

.eCRM-account {
    text-align: right;
    margin: 0px;
}

    .eCRM-account input {
        width: 25px;
        margin: 4px 0px -4px 10px;
    }

/*------------------Contact Forms style starts------------------------*/

.gray-bg {
    background-color: #f1f1f1;
}

.box-01 {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 25px 25px 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin: 10px 0px 20px;
}

.box-admin {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
    border-bottom: 3px solid #e47614;
    background-color: #fff;
    margin: 0px 0px;
    /*padding: 1px 0px 1px 5px;*/
    padding: 1px 15px 1px 15px;
}

.box-01 p, .form-head p {
    margin: 0px 0px 15px;
}

.box-01 h5 span, .cus-req-form h5 span {
    color: #e47614;
    font-size: 13px;
}

.qtn-update-top {
    font-size: 14px;
    margin: 25px 0px 0px 0px;
}

.form-message {
    color: #e67817;
    font-family: Roboto-Medium;
    font-size: 15px;
}

.form-message-crf {
    color: #fcb92d;
    font-family: Roboto-Medium;
    font-size: 15px;
}

.form-head h5 {
    font-size: 14px;
    margin: 5px 0px 8px;
}

    .form-head h5 span {
        color: #e47614;
        font-size: 12px;
    }

    .form-head h5 sup {
        color: red;
    }

.form-head h6 {
    margin: 10px 0px 5px;
    font-size: 13px;
    color: red;
}

.form-txtbx, .grd-txtbx, .inputbxtext {
    border: none;
    background-color: #f1f1f1;
    width: 100%;
    padding: 8px 5px;
    border-radius: 5px;
    transition: all 0.5s;
    color: #000;
}

    .form-txtbx:focus, .grd-txtbx:focus, .inputbxtext:focus {
        border: 1px solid #e67817;
    }

.form-lstbx, .listbox {
    overflow-x: auto;
    min-height: 300px;
}

.grd-txtbx {
    border: 1px solid rgba(0,0,0,0.7);
    background-color: #f1f1f1;
}

.form-txtbx-readonly {
    border: 1px solid rgba(230, 120, 23, 0.3);
    background-color: rgba(230, 120, 23, 0.3);
}

.form-calendar-txtbx {
    width: 85%;
}

.calendar-gif {
    width: 30px;
    margin: 0px 0px -10px 5px;
}

.form-ddl {
    min-height: 35px;
}

.form-btn, .admin-btn-tab {
    border: 1px solid #e67817;
    background-color: #e67817;
    width: 80px;
    padding: 6px 5px;
    border-radius: 50px;
    transition: all 0.5s;
    color: #fff;
}

    .form-btn:hover, .admin-btn-tab:hover {
        border: 1px solid #fcb92d;
        background-color: #fcb92d;
        color: #000;
    }

.admin-btn-tab {
    width: auto;
}

.admin-tab-div {
    border-bottom: 1px solid #eee;
    margin: 10px 0px;
}

.form-btn-top {
    margin: 10px 0px 10px;
}

.grd-savebtn, .grd-addbtn {
    border: 1px solid #fdb92e;
    background-color: #e67817;
    color: #fff;
    border-radius: 15px;
    padding: 0px 6px;
    float: right;
    transition: all 0.5s;
}

    .grd-savebtn:hover, .grd-addbtn:hover {
        border: 1px solid #e67817;
        background-color: #fdb92e;
        color: #000;
    }

.grd-addbtn {
    font-size: 20px;
}

.grd-addbtn-margin {
    margin-top: -15px;
}

.grid-message {
    color: #e67817;
}

.form-btn-txt {
    margin: 5px 0px 0px;
    border: none;
    background-color: transparent;
    color: #fff;
    transition: all 0.5s;
}

    .form-btn-txt:hover {
        color: #e67817;
    }

.form-lstbx {
    overflow-x: auto;
    min-height: 300px;
}

.font-icon i {
    color: #e67817;
    font-size: 18px;
}

.form-captcha {
    color: #e67817;
    font-family: Roboto-Regular;
}

.cus-req-form {
    background-color: #fff;
}

    .cus-req-form h3 {
        margin: 10px 0px;
        font-family: Roboto-Medium;
        font-size: 14px;
        color: #e67817;
        border-bottom: 1px solid #fcb92d;
        padding-bottom: 10px;
    }

    .cus-req-form h6 {
        font-family: Roboto-Regular;
        color: red;
        font-size: 14px;
    }

    .cus-req-form h5 {
        margin: 5px 0px;
        font-size: 14px;
    }

.customer-requirement-div {
    background-color: #fcfefc;
    border-radius: 5px;
    padding: 30px;
}

    .customer-requirement-div img {
        width: 300px;
    }

    .customer-requirement-div h1, .customer-requirement-div h2 {
        margin: 30px 0px 5px;
        font-size: 35px;
        font-family: Roboto-Medium;
        color: #e67817;
    }

        .customer-requirement-div h1 span {
            font-family: Roboto-Bold;
            text-transform: uppercase;
            font-size: 55px;
            letter-spacing: 1px;
        }

    .customer-requirement-div h2 {
        margin: 5px 0px 0px;
    }

    .customer-requirement-div h3 {
        margin: 30px 0px 0px;
    }

        .customer-requirement-div h3 a {
            padding: 10px;
            background-color: #000;
            border: 1px solid #e67817;
            border-radius: 5px;
            color: #fff;
            text-transform: uppercase;
            font-size: 14px;
            transition: all 0.5s;
            box-shadow: rgba(252, 185, 45, 0.4) 5px 5px, rgba(252, 185, 45, 0.3) 10px 10px, rgba(252, 185, 45, 0.2) 15px 15px, rgba(252, 185, 45, 0.1) 20px 20px, rgba(252, 185, 45, 0.05) 25px 25px;
        }

            .customer-requirement-div h3 a span, .customer-requirement-div h3 a:hover {
                color: #fcb92d;
            }

                .customer-requirement-div h3 a:hover span {
                    color: #fff
                }
/*------------------//Contact Forms style ends----------------------*/

.crm-head3 {
    color: #000;
    text-shadow: 0px 1px 1px #fdb92e;
    font-size: 25px;
    font-family: Roboto-Medium;
    margin: 0px 0px 10px;
}

.crm-head4 {
    color: #E97451;
    font-size: 17px;
    font-family: Roboto-Medium;
    margin: 0px 0px 10px;
}

.view-div {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    border-bottom: 3px solid #fcb92d;
    margin: 15px 0px;
}

.view-div-demo {
    margin: 40px 0px 15px;
}

    .view-div h3, .view-div-demo h5 {
        margin: 0px;
        background-color: #fcb92d;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        font-size: 15px;
        padding: 10px 5px;
        text-align: center;
        font-family: Roboto-Regular;
        color: #000;
    }

    .view-div-demo h3 {
        float: left;
        width: 70%;
        text-align: left;
        border-top-right-radius: 0;
        padding: 10px 15px;
    }

.view-div-log h3 {
    font-size: 14px;
}

.view-div-demo h5 {
    float: left;
    width: 30%;
    text-align: left;
    padding: 10px 15px;
    padding: 9px 15px;
    background: linear-gradient(to top, #d31027, #ea384d);
    margin: -31px 0px 15px 0px;
    line-height: 26px;
    color: #fff;
    font-family: Roboto-Regular;
}

    .view-div-demo h5 span {
        font-family: Roboto-Regular;
        font-size: 14px;
        color: #f6f806;
    }

    .view-div-demo h5 i {
        color: #f6f806;
        padding-right: 5px;
    }

.view-div div {
    padding: 15px;
}

    .view-div div h4 {
        margin: 0px 0px 10px;
        padding: 15px;
        font-family: Roboto-Medium;
        font-size: 14px;
        line-height: 26px;
        background-color: rgba(254, 230, 180, 0.5);
        border-radius: 5px;
        /*border-bottom: 1px solid #fee6b4;*/
    }

.view-div-demo div h4 {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.view-div-log div h4 {
    padding: 10px;
    line-height: 20px;
}

.view-div div i {
    color: #e47614;
    padding-right: 5px;
}

.view-div div table {
    width: 100%;
}

    .view-div div table tr td {
        padding: 10px 0px;
        vertical-align: top;
        border-bottom: 1px solid rgba(254, 230, 180, 0.8);
    }

        .view-div div table tr td:nth-child(1) {
            width: 30%;
        }

        .view-div div table tr td span {
            color: rgba(0,0,0,0.7);
        }

        .view-div div table tr td a {
            color: #0066cc;
            transition: all 0.5s;
        }

            .view-div div table tr td a:hover {
                color: #0080ff;
            }

.view-div-log div table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    line-height: 20px;
}

    .view-div-log div table th:first-child {
        border-top-left-radius: 10px;
    }

    .view-div-log div table th:last-child {
        border-top-right-radius: 10px;
    }

    .view-div-log div table tr:last-child td:first-child {
        border-bottom-left-radius: 10px;
    }

    .view-div-log div table tr:last-child td:last-child {
        border-bottom-right-radius: 10px;
    }

    .view-div-log div table tr td, .view-div-log div table tr th {
        padding: 5px;
        border: 1px solid rgba(230, 120, 23, 0.3);
    }

    .view-div-log div table tr th {
        background-color: #fcb92d;
        font-weight: 500;
        line-height: 20px;
    }

    .view-div-log div table tr label {
        font-weight: 500;
    }

    .view-div-log div table tr td:nth-child(1) {
        width: 5%;
    }

    .view-div-log div table tr td:nth-child(2) {
        width: 15%;
    }

    .view-div-log div table tr td:nth-child(3) {
        width: 15%;
    }

    .view-div-log div table tr td:nth-child(4) {
        width: 15%;
    }

    .view-div-log div table tr td:nth-child(5) {
        width: 20%;
    }

    .view-div-log div table tr td:nth-child(6) {
        width: 15%;
    }

.view-grid-div h5 {
    width: 25%;
    text-align: left;
    padding: 10px 15px;
    padding: 9px 15px;
    /*background: linear-gradient(to right, #fcb92d, #e47614);*/
    background-color: rgba(230, 120, 23, 0.1);
    border: 1px solid #000;
    margin: 0px 0px 10px;
    line-height: 26px;
    color: #000;
    font-family: Roboto-Regular;
    border-radius: 5px;
}

    .view-grid-div h5 span {
        color: #e47614;
    }

        .view-grid-div h5 span i {
            padding-right: 5px;
        }

.view-grid-div div {
    margin-bottom: 15px;
}

    .view-grid-div div table {
        width: 100%;
    }

        .view-grid-div div table tr td {
            padding: 10px 0px;
            vertical-align: top;
            border-bottom: 1px solid rgba(254, 230, 180, 0.8);
        }

            .view-grid-div div table tr td:nth-child(1) {
                width: 30%;
            }

            .view-grid-div div table tr td span {
                color: rgba(0,0,0,0.7);
            }

            .view-grid-div div table tr td a {
                color: #0066cc;
                transition: all 0.5s;
            }

                .view-grid-div div table tr td a:hover {
                    color: #0080ff;
                }
/*Media query*/
.count {
    margin: 5px 0px 10px;
    border-radius: 5px;
    /*box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;*/
    padding: 15px;
    border-radius: 15px;
    transition: all 0.5s;
    text-align: center;
}

/*.count-01 {
    background: linear-gradient(to right, #f37335, #fdc830);
    border-right: 3px solid #dd1818;
}

.count-02 {
    background: linear-gradient(to left, #f7b733, #fc4a1a);
    border-right: 3px solid #dd1818;
}*/

.count-01 {
    background: linear-gradient(to right, #ccc, #ddd);
    border-right: 3px solid #e47614;
}

.count-02 {
    background: linear-gradient(to left, #ddd, #ccc);
    border-right: 3px solid #e47614;
}

.count:hover {
    /*box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
}

.count p {
    margin: 0px 0px 5px;
    color: #e47614;
    font-family: Roboto-Medium;
    font-size: 18px;
}

    .count p i {
        padding: 0px 0px 0px 0px;
    }

.count h3 {
    margin: 0px;
    color: #000;
    font-size: 14px;
}

.dtlViewPlanningDtl {
    margin: 0px 15px 25px;
    background-color: #fff;
}

    .dtlViewPlanningDtl h1 {
        font-size: 15px;
        margin: 0px;
    }

        .dtlViewPlanningDtl h1 label {
            background-color: #fcb92d;
            font-weight: 500;
            padding: 3px 6px;
            border-radius: 10px;
        }

    .dtlViewPlanningDtl table {
        width: 100%;
    }

        .dtlViewPlanningDtl table tr td {
            padding: 5px;
            border: 1px solid rgba(230, 120, 23, 0.1);
        }

            .dtlViewPlanningDtl table tr td:nth-child(1) {
                width: 40%;
            }

        .dtlViewPlanningDtl table tr:nth-child(odd) {
            background-color: rgba(230, 120, 23, 0.1);
        }

/*GridPrint class*/

.gridPrint {
    margin: 0px 0px 10px;
}

    .gridPrint tr th, .gridPrint tr td {
        padding: 3px;
        font-weight: 500;
    }

    .gridPrint tr th {
        background-color: rgba(0,0,0,0.7);
        color: #fff;
    }

    .gridPrint tr td label {
        font-weight: 500;
        margin: 0px;
    }
/*GridPrint class*/
.pm-menu-div {
    background-color: #fff;
    padding: 15px;
    margin: 20px 0px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    text-align: center;
}

    .pm-menu-div img {
        width: 65%;
        margin-bottom: 15px;
    }

.pm-menu-div-01 img {
    width: 40%;
}

.pm-menu-div a {
    color: #000;
    transition: all 0.5s;
}

.pm-menu-div:hover a {
    color: #e47614;
}

.pm-table {
    width: 100%;
    background-color: #fff;
    border: none;
    margin: 15px 0px 0px;
    border-collapse: separate;
    border-spacing: 0;
}

.pm-table-01 {
    margin: 0px 0px 10px;
}

.pm-table tr td, .pm-table tr th {
    border: none;
    padding: 5px;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    border-radius: 3px;
}

.pm-table tr td {
    padding: 8px 5px;
    border-bottom: 1px solid #eee;
}

.pm-table tr th {
    background-color: #fbe4d0;
    border: 5px solid #fff;
}

.pm-table-01 tr th {
    background-color: #f1f1f1;
    border: 5px solid #fff;
}

.pm-table tr td label {
    font-weight: 500;
    font-size: 13px;
}

.pm-table tr td table tr td div table {
    background-color: inherit;
}

    .pm-table tr td table tr td div table tr td {
        padding: 1px;
        border-bottom: none;
        font-size: 11px;
    }

.pm-view-div {
    background-color: #fff;
    padding: 15px;
    margin: 10px 0px 20px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.pm-view-div-padding {
    padding: 0px 10px;
}

.pm-view-div h3 {
    color: #000;
    font-size: 14px;
    background-color: rgba(230, 120, 23, 0.2);
    margin: 0px 0px 10px;
    padding: 10px;
    border-radius: 5px;
}

.pm-view-div h4 {
    margin: 10px 0px;
    font-size: 14px;
}

.pm-view-div p span {
    color: rgba(0,0,0,0.6);
}

.pm-top {
    margin-top: 10px;
}

.pm-view-div h5, .pm-view-div h6 {
    margin: 0px;
}

    .pm-view-div h5 span, .pm-view-div h6 span {
        float: right;
        background-color: #25D366;
        color: #fff;
        padding: 10px;
        border-radius: 5px;
        margin: 0px 0px 0px 0px;
    }

    .pm-view-div h6 span {
        background-color: #0080ff;
        float: left;
        padding: 5px 10px;
    }

.pm-view-div table {
    width: 100%;
}

    .pm-view-div table tr td {
        vertical-align: top;
        padding: 5px;
        border-bottom: 1px solid #f1f1f1;
    }

        .pm-view-div table tr td:nth-child(1) {
            width: 30%;
        }

.pm-view-div-padding-01 h3 {
    margin: 10px 0px;
}

.pm-line {
    border-bottom: 1px solid #eee;
    margin: 5px 0px 10px;
}

.pm-action {
    background-color: #eee;
    padding: 2px 5px;
}

.pm-menu {
    border-bottom: 1px solid #fcb92d;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

    .pm-menu ul {
        list-style-type: none;
        margin: 0px 0px 0px -40px;
    }

        .pm-menu ul li {
            display: inline-block;
            text-align: center;
            background-color: #fff;
            border: 1px solid #fcb92d;
            border-radius: 35px;
            padding: 10px 15px;
            margin: 0px 15px 0px 0px;
            transition: all 0.5s;
        }

            .pm-menu ul li:hover {
                border: 1px solid #e47614;
                background-color: #fcb92d;
            }

            .pm-menu ul li img {
                width: 40px;
            }

            .pm-menu ul li a {
                color: #000;
            }

            .pm-menu ul li:last-child {
                float: right !important;
                margin-right: 0;
            }

.pm-menu-report ul li {
    margin: 0px 5px 0px 0px;
}

.status-padding h4 span {
    padding: 7px 14px;
    border-radius: 30px;
}

.track-progress {
    margin: 20px 0 10px;
    height: 20px;
    width: 100%;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.track-progress-bar {
    background-color: #01a990;
    border-radius: 10px;
    height: 100%;
    line-height: 20px;
    color: #fff;
    text-align: center;
    transition: width 0.6s ease;
}

.ts-top {
    margin-top: 20px;
}

.table-progress {
    width: 100%;
    margin: 5px 0px 10px;
    border-spacing: 0;
}

    .table-progress tr th, .table-progress tr td {
        padding: 5px;
        border: 5px solid #fff;
        font-size: 13px;
    }

    .table-progress tr th {
        background-color: rgba(230, 120, 23, 0.3);
        font-weight: 500;
    }

    .table-progress tr td {
        border-bottom: 1px solid #eee;
    }

/*switch*/

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    float: right;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.status-card {
    display: inline-block;
    width: 18%;
    margin: 10px;
    padding: 20px 15px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.status-title {
    font-size: 16px;
    margin-bottom: 10px;
}

    .status-title a {
        color: #fff;
    }

.status-count {
    font-size: 25px;
}

/* Colors */
.status-assigned {
    background-color: #2196F3;
}
/* Blue */
.status-inprogress {
    background-color: #FF9800;
}
/* Orange */
.status-pending {
    background-color: #9E9E9E;
}
/* Gray */
.status-reassigned {
    background-color: #9C27B0;
}
/* Purple */
.status-completed {
    background-color: #4CAF50;
}
/* Green */
.task-chart-div {
    margin: 15px 0px 15px 15px;
    overflow-x: auto;
}

.task-chart {
    width: 98%;
    height: 350px;
}

    .task-chart iframe {
        border-radius: 10px;
        width: 100%;
    }

.dash-btn {
    margin: 15px 0px 10px;
    text-align: center;
}

    .dash-btn a {
        padding: 10px 20px;
        background-color: #541628;
        border-radius: 5px;
        border: 1px solid #541628;
        color: #fff;
        transition: all 0.5s;
    }

        .dash-btn a:hover {
            background-color: #160a24;
        }

.rsol-box-wt, .rsol-box-wt-01 {
    margin: 10px 0px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #fff;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
    border-bottom: 3px solid #fca903;
}

    .rsol-box-wt:hover {
        border: 1px solid #ccc;
        border-bottom: 3px solid #e15326;
    }

    .rsol-box-wt img {
        width: 100%;
    }

.rsol-box-wt-img01 img {
    width: 70%;
}

.top-btn {
    margin: 0px;
    padding: 40px 0px;
}

    .top-btn a {
        background-color: #fdb92e;
        border: 1px solid #fdb92e;
        color: rgba(0, 0, 0, 0.9);
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 15px;
        transition: all 0.5s;
    }

        .top-btn a:hover {
            background-color: #e47614;
            border: 1px solid #e47614;
            color: #fff;
        }
/* Large desktop and laptops*/
@media (min-width: 1200px) {
    .eCRM-title-master h1 {
        font-size: 30px;
        padding: 18px 0px;
        line-height: 32px;
    }

    .eCRM-slider tr td h1 {
        font-size: 60px;
        line-height: 75px;
    }

        .eCRM-slider tr td h1 span {
            font-size: 50px;
        }

    .eCRM-login-div {
        margin: 60px 60px 0px 60px;
        padding: 40px 20px;
    }

    .eCRM-login-txtbx {
        padding: 10px;
    }

    .eCRM-login-div h6 {
        font-size: 30px;
    }

    .eCRM-login-btn {
        padding: 10px 10px;
        width: 150px;
    }

    .eCRM-login-div p {
        margin: 15px 0px;
    }

    .flist {
        margin: 0px 0px 0px -40px;
    }

    .flist-master {
        margin: 0px 0px 0px -40px;
    }

    .top-contact-home {
        margin: 25px 0px 0px -40px;
    }

        .top-contact-home li {
            list-style-type: none;
            display: list-item;
        }

            .top-contact-home li a {
                font-size: 17px;
            }

    .footer-div {
        margin-left: 30px;
    }
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
    .eCRM-title h1 {
        font-size: 40px;
    }

        .eCRM-title h1 span {
            font-size: 18px;
        }

    .eCRM-slider tr td h1 {
        font-size: 35px;
    }

        .eCRM-slider tr td h1 span {
            font-size: 20px;
        }
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
    .eCRM-home-banner-bg {
        height: 85vh;
    }

    .eCRM-title h1 {
        font-size: 35px;
    }

        .eCRM-title h1 span {
            font-size: 18px;
        }

    .eCRM-slider tr td h1 {
        font-size: 32px;
    }

        .eCRM-slider tr td h1 span {
            font-size: 20px;
        }

    .eCRM-login-div {
        margin: 30px 20px;
    }

    .eCRM-slider {
        height: 90vh;
    }

    .footer-width {
        width: 33.333%;
    }

    .view-grid-div h5 {
        width: 50%;
    }

    .top-btn {
        padding: 30px 0px;
    }

        .top-btn a {
            padding: 5px 10px;
            font-size: 14px;
        }
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
    .fixed-top {
        position: relative;
        width: 100%;
    }

    .eCRM-home-banner-bg {
        height: 85vh;
    }

    .eCRM-logo, .eCRM-title, .top-contact {
        text-align: center;
    }

        .eCRM-logo img {
            width: 60px;
        }

        .eCRM-title h1 {
            font-size: 25px;
            font-family: Roboto-Medium;
            padding: 5px;
        }

            .eCRM-title h1 span {
                font-size: 14px;
            }

    .eCRM-date-time {
        text-align: center;
        margin: 7px 0px 10px;
        font-size: 14px;
        font-family: Roboto-Regular;
    }

    .eCRM-slider {
        height: 30vh;
    }

        .eCRM-slider tr td h1 {
            font-size: 25px;
        }

            .eCRM-slider tr td h1 span {
                font-size: 15px;
            }

    .eCRM-home-login {
        height: 50vh;
    }

    .eCRM-login-div {
        margin: 15px;
    }

    .footer-width {
        width: 100%;
    }

    .fixed-ht {
        height: 0;
    }

    .master-ticket-list {
        text-align: center;
    }

    .eCRM-account {
        text-align: left;
        margin: 15px 0px;
    }

    .view-div-demo h3 {
        width: 60%;
    }

    .view-div-demo h5, .pm-menu-div img {
        width: 40%;
    }

    .view-grid-div h5 {
        width: 100%;
    }

    .status-card {
        display: inline-block;
        width: 25%;
        margin: 10px;
        padding: 15px;
    }

    .status-title {
        font-size: 14px;
    }

    .status-count {
        font-size: 20px;
    }
    .top-btn {
        padding: 10px 0px;
    }

        .top-btn a {
            padding: 5px 10px;
            font-size: 14px;
        }
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/
