@charset "utf-8";

/* ==========================================================================
   Common Css
   ========================================================================== */

body {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0
}

a {
    text-decoration: none;
    color: #dd3355;
}

a:hover,
a:focus {
    color: #dd3355;
}

a:focus,
a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"]>input[type="button"]::-moz-focus-inner {
    outline: 0;
}

body .material-icons {
    font-size: 14px;
}

 :focus {
    outline: none;
}


/* ==========================================================================
   Button Css
   ========================================================================== */

.btn {
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}


/* ==========================================================================
   Form Css
   ========================================================================== */

.form-control {
    border-radius: 5px;
    height: 35px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control2 {
    border-radius: 5px;
    height: 43px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-group-relative {
    position: relative;
}

.form-group-relative .material-icons {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.form-group-relative .form-control {
    padding-left: 30px;
}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0 !important;
}

.form-control::-moz-placeholder {
    color: #666;
    opacity: 1;
    filter: alpha(opacity=100);
}

.form-control:-moz-placeholder {
    color: #666;
    opacity: 1;
    filter: alpha(opacity=100);
}

.form-control::-webkit-input-placeholder {
    color: #666;
    opacity: 1;
    filter: alpha(opacity=100);
}

.form-control:-ms-input-placeholder {
    color: #666;
    opacity: 1;
    filter: alpha(opacity=100);
}


/* ==========================================================================
   Radio & Checkbox Css
   ========================================================================== */

.checkbox,
.radio {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    -webkit-transition: color, opacity 0.25s linear;
    transition: color, opacity 0.25s linear;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    color: #66615b;
    cursor: pointer;
}

.checkbox .icons,
.radio .icons {
    color: #66615b;
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    top: 0;
    width: 20px;
    text-align: center;
    line-height: 21px;
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: color, opacity 0.15s linear;
    transition: color, opacity 0.15s linear;
    opacity: .50;
}

.checkbox.checked .icons,
.radio.checked .icons {
    opacity: 1;
}

.checkbox input,
.radio input {
    outline: none !important;
    display: none;
}

.checkbox .icons .first-icon,
.radio .icons .first-icon,
.checkbox .icons .second-icon,
.radio .icons .second-icon {
    display: inline-table;
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent;
    margin: 0;
    opacity: 1;
    filter: alpha(opacity=100);
}

.checkbox .icons .second-icon,
.radio .icons .second-icon {
    opacity: 0;
    filter: alpha(opacity=0);
}

.checkbox:hover,
.radio:hover {
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.checkbox:hover .first-icon,
.radio:hover .first-icon {
    opacity: 0;
    filter: alpha(opacity=0);
}

.checkbox:hover .second-icon,
.radio:hover .second-icon {
    opacity: 1;
    filter: alpha(opacity=100);
}

.checkbox.checked .first-icon,
.radio.checked .first-icon {
    opacity: 0;
    filter: alpha(opacity=0);
}

.checkbox.checked .second-icon,
.radio.checked .second-icon {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.checkbox.disabled,
.radio.disabled {
    cursor: default;
    color: #DDDDDD;
}

.checkbox.disabled .icons,
.radio.disabled .icons {
    color: #DDDDDD;
}

.checkbox.disabled .first-icon,
.radio.disabled .first-icon {
    opacity: 1;
    filter: alpha(opacity=100);
}

.checkbox.disabled .second-icon,
.radio.disabled .second-icon {
    opacity: 0;
    filter: alpha(opacity=0);
}

.checkbox.disabled.checked .icons,
.radio.disabled.checked .icons {
    color: #DDDDDD;
}

.checkbox.disabled.checked .first-icon,
.radio.disabled.checked .first-icon {
    opacity: 0;
    filter: alpha(opacity=0);
}

.checkbox.disabled.checked .second-icon,
.radio.disabled.checked .second-icon {
    opacity: 1;
    color: #DDDDDD;
    filter: alpha(opacity=100);
}


/* ==========================================================================
   Table Css
   ========================================================================== */

.table>caption+thead>tr:first-child>td .material-icons,
.table>caption+thead>tr:first-child>th .material-icons,
.table>colgroup+thead>tr:first-child>td .material-icons,
.table>colgroup+thead>tr:first-child>th .material-icons,
.table>thead:first-child>tr:first-child>td .material-icons,
.table>thead:first-child>tr:first-child>th .material-icons,
.table>tbody>tr>td .material-icons,
.table>tbody>tr>th .material-icons,
.table>tfoot>tr>td .material-icons,
.table>tfoot>tr>th .material-icons,
.table>thead>tr>td .material-icons,
.table>thead>tr>th .material-icons,
.table>tbody>tr>th a {
    position: relative;
    top: 2px;
    float: right;
    display: block;
}

.table>tbody>tr>th a span {
    margin-right: 5px;
}


/* ==========================================================================
   Modal Css
   ========================================================================== */

.row-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
}

.row-flex::after,
.row-flex::before {
    display: none;
}


/* ==========================================================================
   Header Css
   ========================================================================== */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 9;
}

.header .row {
    align-items: center;
}

.logo {
    max-width: 150px;
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 150px);
    padding-left: 0;
}

.search {
    position: relative;
    max-width: 165px;
}

.search .form-group {
    margin-bottom: 0;
}

.search .form-control {
    border: none;
}

.search .material-icons {
    font-size: 26px;
    color: #dd3355;
}

.menu {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.menu>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 0;
}

.menu>ul>li {
    display: block;
    padding: 15px 0.6em 10px;
}

.menu li a {
    font-size: 13px;
    color: #35353F;
}

.menu li a:hover,
.menu li a:focus {
    text-decoration: none;
    color: #dd3355;
}

.menu .active a {
    font-weight: 700;
    color: #dd3355;
    font-size: 14px;
}

.menu li a i {
    display: block;
    font-size: 18px;
}

.menu .user-info {
    padding-left: 10px;
    border-left: 1px solid #cccccc;
}

.menu>ul>li.dropdown>.dropdown-menu {
    min-width: 300px;
    right: 0;
    left: inherit;
    border: none;
    border-radius: 0;
}

.menu>ul>li.dropdown>.dropdown-menu>li {
    float: left;
    width: 50%;
    padding: 0;
}

.menu>ul>li.dropdown>.dropdown-menu>li:nth-child(odd) {
    clear: both;
}

.menu .dropdown-menu>li>a {
    padding: 10px 12px;
    font-size: 13px;
    text-transform: uppercase;
    white-space: normal;
}

.menu .dropdown-menu>li>a:hover,
.menu .dropdown-menu>li>a:focus {
    color: #dd3355;
    background-color: transparent;
}


/* ==========================================================================
   Service listing
   ========================================================================== */

.service-listing {
    position: fixed;
    width: 100%;
    top: 48px;
    left: 0;
    padding: 10px 0;
    color: #fff;
    background-color:#fc3355;
    z-index: 5;
}
.service-listing ul.list-inline a {
    color: #fff;
    padding-right: 5px;
}
.service-listing ul.list-inline {
    margin-bottom: 0;
}
.service-listing .list-company ul.list-inline li{
    padding-right: 2px;
}
.service-list {
    width: 20%;
}

.service-list p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.service-list p span,
.service-list p i {
    margin-right: 5px;
}

.service-list p,
.service-list li {
    text-transform: uppercase;
}

.service-list ul:last-child,
.service-list p:last-child,
.service-list li:last-child {
    margin-bottom: 0;
}

.service-list li a {
    color: #fff;
}

.service-list li:hover a,
.service-list li:focus a,
.service-list .active a {
    color: #dd3355;
}

.showing-result p {
    text-transform: none;
}


/* ==========================================================================
   Right Part Css
   ========================================================================== */

.page-content {
    min-height: 100vh;
    background-color: #eeeeee;
    padding: 150px 0 50px;
}

.sidebar {
    width: 20%;
}

.right-content {
    width: 80%;
}

.sidebar-list {
    padding: 15px 0;
    border-bottom: 1px solid #d0d0d0;
}

.sidebar-list-filter {
    border-top: 1px solid #d0d0d0;
}

.sidebar-list:first-child {
    padding-top: 0;
}

.sidebar-menu h3 {
    margin-bottom: 0;
    font-size: 18px;
}

.sidebar-menu .dropdown {
    padding: 15px 0;
}

.sidebar-menu .dropdown>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    text-decoration: none;
}

.sidebar-menu .dropdown>a .material-icons {
    flex-grow: 1;
    text-align: right;
}

.sidebar-menu .dropdown-menu {
    clear: both;
    position: relative;
    border: none;
    padding-bottom: 15px;
    width: 100%;
    min-width: 100%;
    background-color: transparent;
    box-shadow: none;
}

.sidebar-menu .dropdown-menu li a {
    padding: 0;
    color: #77787d;
}

.sidebar-menu .dropdown .material-icons {
    font-size: 14px;
    flex-grow: 1;
}


/* ==========================================================================
   Footer Css
   ========================================================================== */

.footer {
    /*position: fixed;*/
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 15px 0;
    background-color: #35353f;
}

.footer ul {
    margin-bottom: 0;
}

.footer .footer-logo img {
    max-width: 120px;
}

.zoomer li {
    color: #fff;
    vertical-align: middle;
}

.zoomer li a {
    padding-top: 4px;
    display: block;
}


/* ==========================================================================
   Footer
   ========================================================================== */


/* ==========================================================================
   Tablet Css
   ========================================================================== */

@media screen and (min-width: 992px) {
    /* ==========================================================================
       Tabale
       ========================================================================== */
    .table>caption+thead>tr:first-child>td,
    .table>caption+thead>tr:first-child>th,
    .table>colgroup+thead>tr:first-child>td,
    .table>colgroup+thead>tr:first-child>th,
    .table>thead:first-child>tr:first-child>td,
    .table>thead:first-child>tr:first-child>th,
    .table>tbody>tr>td,
    .table>tbody>tr>th,
    .table>tfoot>tr>td,
    .table>tfoot>tr>th,
    .table>thead>tr>td,
    .table>thead>tr>th {
        /*width: 22%;*/
        padding: 15px 10px;
    }
    .table>thead>tr>th {
        color: #333
    }
    .table>tbody>tr>th a {
        margin-right: 8px;
        font-size: 13px;
        font-weight: 400;
    }
    .table>tbody>tr:hover>th,
    .table>tbody>tr:hover>td {
        color: #dd3355;
    }
    /* ==========================================================================
       Header Css
       ========================================================================== */
    .header .search {
        width: 250px;
    }
    .menu li {
        padding: 12px;
    }
    .menu li a {
        font-size: 14px;
    }
    .menu .user-info span {
        display: inline-block;
        vertical-align: middle;
    }
    .menu .user-info:hover a,
    .menu .user-info:focus a {
        color: #35353F;
    }
    .user-info .user-image {
        margin-right: 8px;
    }
    .username strong {
        color: #dd3355;
    }
    /* ==========================================================================
       Service Listing
       ========================================================================== */
    .service-listing {
        top: 77px;
    }
    .service-list li {
        position: relative;
    }
    .service-list li:not(:last-child)::after {
        display: inline-block;
        content: '|';
        margin-left: 10px;
        font-weight: 700;
        color: #fff;
    }
    /* ==========================================================================
      Sidebar
      ========================================================================== */
    .sidebar-menu {
        max-width: 250px;
    }
    .sidebar-list>ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: wrap;
        flex-flow: wrap;
    }
    .sidebar-list>ul:last-child {
        margin-bottom: 0;
    }
    .sidebar-list>ul>li {
        width: 50%;
    }
    .sidebar-list>ul>li:nth-child(even) {
        text-align: right;
    }
    .right-content {
        width: 80%;
    }
    /* ==========================================================================
       Section 2
       ========================================================================== */
    /* ==========================================================================
       Footer
       ========================================================================== */
}

@media screen and (min-width: 1200px) {
    .container {
        width: 1280px;
    }
    /* ==========================================================================
       Common
       ========================================================================== */
    .table>caption+thead>tr:first-child>td,
    .table>caption+thead>tr:first-child>th,
    .table>colgroup+thead>tr:first-child>td,
    .table>colgroup+thead>tr:first-child>th,
    .table>thead:first-child>tr:first-child>td,
    .table>thead:first-child>tr:first-child>th,
    .table>tbody>tr>td,
    .table>tbody>tr>th,
    .table>tfoot>tr>td,
    .table>tfoot>tr>th,
    .table>thead>tr>td,
    .table>thead>tr>th {
        font-size: 12px;
    }
    /* ==========================================================================
       Header Css
       ========================================================================== */
    .logo {
        max-width: 200px;
        padding-left: 30px;
    }
    .header-right {
        width: calc(100% - 200px);
        padding-left: 35px;
    }
    .menu>ul>li {
        padding: 18px 15px;
    }
    .menu li a {
        font-size: 12px;
    }
    .menu li a i {
        font-size: 24px;
    }
    /* ==========================================================================
       Service Listing Css
       ========================================================================== */
    .service-listing {
        top: 77px;
        z-index: 3;
    }
    /* ==========================================================================
       Hero Section Css
       ========================================================================== */
    /* ==========================================================================
       Section 2
       ========================================================================== */
    /* ==========================================================================
       Footer
       ========================================================================== */
}


/*----Kaizencrm-----*/

.col-centered {
    float: none;
    margin: 0 auto;
}

.modal.left .modal-dialog,
.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 50%;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
    padding: 15px 20px;
}

.modal.left .modal-body,
.modal.right .modal-body {
    padding: 15px 15px 80px;
}


/*Left*/

.modal.left.fade .modal-dialog {
    left: -320px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog {
    left: 0;
}


/*Right*/

.modal.right.fade .modal-dialog {
    right: -320px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
    right: 0;
}


/* ----- MODAL STYLE ----- */

.modal-content {
    border-radius: 0;
    border: none;
}

.modal-header {
    border-bottom-color: #EEEEEE;
    background-color: #FAFAFA;
}

.blur {
    filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='3');
    -webkit-filter: url(#blur-filter);
    filter: url(#blur-filter);
    -webkit-filter: blur(3px);
    filter: blur(3px);
}


/*--------------Menu hover----------------------------*/

.navbar-default .navbar-nav>li.dropdown:hover>a,
.navbar-default .navbar-nav>li.dropdown:hover>a:hover,
.navbar-default .navbar-nav>li.dropdown:hover>a:focus {
    background-color: rgb(231, 231, 231);
    color: rgb(85, 85, 85);
}


/*li.dropdown:hover > .dropdown-menu {
    display: block;
    }*/


/*--------------------Custom Select Css-----------------------------*/


/*.select2.select2-container{ display:block; width:100% !important;}*/

.select2-container--default .select2-selection--single {
    height: 40px;
    padding: 5px 10px;
    padding: 5px 10px 5px 5px;
    /*font-size: 13px;*/
    line-height: 1.5;
    border-radius: 0;
    border: 1px solid #ccc;
    color: #333333;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(100% - 4px);
    top: 2px;
}

.panel-default>.panel-heading {
    /*background:#35353f;
    color: #fff;*/
    background: none;
    color: #333;
    border: 0;
    padding: 20px;
    /*font-size:22px;*/
    font-size: 18px;
}

.panel-default>.panel-heading .btn {
    /*padding-top:0; padding-bottom:0;*/
}

.btn-primary {
    color: #ffffff;
    background-color: #dd3355;
    border-color: #dd3355;
}

table .btn-primary {
    background: #333;
    border-color: #333;
}

.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:hover {
    color: #ffffff;
    background-color: #f9748a;
    border-color: #f9748a;
}

.btn-default {
    color: #ffffff;
    background-color: #35353f;
    border-color: #35353f;
}

.btn-default:active,
.btn-default.active,
.open>.dropdown-toggle.btn-default,
.btn-default:focus,
.btn-default.focus,
.btn-default:hover {
    color: #ffffff;
    background-color: #6b6b6b;
    border-color: #6b6b6b;
}

.btn-default.disabled,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-primary.disabled,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
    background-color: #ccc;
    border-color: #ccc;
}

.modal-header {
    background: #35353f;
    color: #fff;
}

.modal .modal-header .close {
    color: #fff;
    opacity: 1;
    margin-top: 4px;
}

.modal .modal-content.insideheader {
    padding: 0;
}

.modal .modal-content.insideheader .modal-body {
    padding-left: 30px;
    padding-right: 30px;
}

.user-info.dropdown .dropdown-menu {
    display: none;
}

.user-info.dropdown:hover .dropdown-menu {
    display: block;
}

.image_wrapper .change_img_link_wrapper {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    background: rgba(53, 53, 63, 0.46);
    vertical-align: middle;
    align-items: center;
}

.image_wrapper img {
    width: 100%;
}

.image_wrapper:hover .change_img_link_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.image_wrapper:hover .change_img_link_wrapper .change_img_link {
    width: 100%;
}

.glyphicon {
    font-size: 16px;
}

.left_second_box {
    display: none
}

.left_third_box .form-group,
.left_box_form .form-group {
    position: relative;
}

.left_third_box .form-group label.control-label,
.left_box_form .form-group label.control-label {
    /*position: absolute;
    top: 12px;
    right: 4px;
    z-index: 1;
    cursor:pointer;
    display:none;*/
    position: relative;
    top: 0;
    right: 0;
    z-index: 1;
    cursor: pointer;
    left: 5px;
    font-weight: 500;
}


/*.left_third_box .form-group:hover label.control-label{
    display:block;
    }*/

.left_third_box .form-group .glyphicon,
.left_box_form .form-group .glyphicon {
    font-size: 12px;
}

.left_third_box .form-group .select2-container--default .select2-selection--single .select2-selection__arrow,
.left_box_form .form-group .select2-container--default .select2-selection--single .select2-selection__arrow {
    /*display:none*/
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    background: #dd3355;
    padding: 0;
    border: 0;
    color: #fff;
    position: relative;
    border-radius: 50%;
    top: 9px;
    left: auto;
    width: 16px;
    height: 15px;
    text-align: center;
    display: block;
    line-height: 16px;
    font-size: 8px;
    margin: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #dd3355;
}

.btn .caret {
    background: #fff;
    padding: 0;
    border: 0;
    color: #dd3355;
    position: relative;
    border-radius: 50%;
    top: 0;
    left: auto;
    width: 16px;
    height: 15px;
    text-align: center;
    display: inline-block;
    line-height: 16px;
    font-size: 8px;
    margin: 0;
    margin-left: 10px;
}

.btn .caret:before {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
}

.left_third_box .form-group .form-control,
.left_box_form .form-group .form-control {
    border-width: 0;
    border-bottom-width: 1px;
    color: #dd3355;
    border-radius: 0;
}

.left_third_box .form-group .select2-container--default .select2-selection--single,
.left_box_form .form-group .select2-container--default .select2-selection--single {
    border-width: 0;
    border-bottom-width: 1px;
}

.collapsable_panel .panel-heading:before {
    /*font-family: "FontAwesome";
    content: "\2212";*/
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    font-size: 10px;
    font-weight: 400;
    width: 17px;
    height: 17px;
    display: inline-block;
    line-height: 18px;
    margin-right: 10px;
    background: #dd3355;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

.collapsable_panel .panel-heading.collapsed:before {
    /*content: "\002b";*/
    content: "\e080";
    line-height: 16px;
}

.left_first_box h3 {
    word-wrap: break-word;
    font-weight: 400;
}

.select2-container .select2-search--inline {
    width: 100%;
}

.select2-container--default .select2-search--inline .select2-search__field {
    min-width: 100%;
}

.checkbox {
    padding-left: 20px;
}

.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 25px;
}

.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    top: 4px;
}

.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    top: 4px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555555;
    border-radius: 3px;
}

.checkbox input[type="checkbox"] {
    opacity: 0;
}

.checkbox input[type="checkbox"]:focus+label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.checkbox input[type="checkbox"]:checked+label::after {
    font-family: 'Glyphicons Halflings';
    content: "\e013";
}

.checkbox input[type="checkbox"]:disabled+label {
    opacity: 0.65;
}

.checkbox input[type="checkbox"]:disabled+label::before {
    background-color: #eeeeee;
    cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
    border-radius: 50%;
}

.checkbox.checkbox-inline {
    margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked+label::before {
    border-color: #dd3355;
}

.checkbox-primary input[type="checkbox"]:checked+label::after {
    color: #fff;
    background-color: #dd3355;
}

.checkbox-danger input[type="checkbox"]:checked+label::before {
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked+label::after {
    color: #fff;
    background-color: #d9534f;
}

.checkbox-info input[type="checkbox"]:checked+label::before {
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked+label::after {
    color: #fff;
    background-color: #5bc0de;
}

.checkbox-warning input[type="checkbox"]:checked+label::before {
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked+label::after {
    color: #fff;
    background-color: #f0ad4e;
}

.checkbox-success input[type="checkbox"]:checked+label::before {
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked+label::after {
    color: #fff;
    background-color: #5cb85c;
}

.radio {
    padding-left: 20px;
}

.radio label {
    display: inline-block;
    position: relative;
    padding-left: 25px;
}

.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    top: 4px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}

.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 17px;
    height: 17px;
    left: 0;
    top: 4px;
    border-radius: 50%;
    background-color: #555555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
    opacity: 0;
}

.radio input[type="radio"]:focus+label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.radio input[type="radio"]:checked+label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.radio input[type="radio"]:disabled+label {
    opacity: 0.65;
}

.radio input[type="radio"]:disabled+label::before {
    cursor: not-allowed;
}

.radio.radio-inline {
    margin-top: 0;
}

.radio-primary input[type="radio"]+label::after {
    background-color: #dd3355;
}

.radio-primary input[type="radio"]:checked+label::before {
    border-color: #dd3355;
}

.radio-primary input[type="radio"]:checked+label::after {
    background-color: #dd3355;
}

.radio-danger input[type="radio"]+label::after {
    background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label::before {
    border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label::after {
    background-color: #d9534f;
}

.radio-info input[type="radio"]+label::after {
    background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label::before {
    border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label::after {
    background-color: #5bc0de;
}

.radio-warning input[type="radio"]+label::after {
    background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label::before {
    border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label::after {
    background-color: #f0ad4e;
}

.radio-success input[type="radio"]+label::after {
    background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label::before {
    border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label::after {
    background-color: #5cb85c;
}

.service-list .dropdown-menu li a {
    color: #dd3355;
}

.service-list .dropdown-menu li:hover a,
.service-list .dropdown-menu li:focus a,
.service-list .dropdown-menu .active a {
    background: #35353f;
    color: #fff;
}

.service-list .dropdown-menu li:after {
    display: none
}

.noborder .list-group-item {
    border-width: 0;
    padding-left: 0;
    padding-right: 0;
    border-bottom-width: 2px;
    margin-bottom: 0;
}

.noborder .list-group-item h4 {
    text-transform: capitalize;
    font-weight: 400;
}

.noborder .list-group-item .close_btn {
    float: right;
}

.noborder .list-group-item .close_btn a {
    text-decoration: none;
    color: #35353f;
}

.noborder .list-group-item img {
    margin: 0 auto;
}

.collapsable_panel .panel-heading {
    cursor: pointer;
}

.editForm .btn-group {
    /*display:none*/
}

.editForm .btn-group button.btn {
    float: none;
    margin-left: 5px;
}

.editForm .btn-group {
    display: block;
    clear: both;
    width: 100%;
    float: left;
}

.contact_results {
    max-height: 400px;
    overflow: auto;
}

.form-group.googlelink {
    position: relative;
}

.form-group.googlelink .google_link {
    position: absolute;
    right: 0;
    top: 27px;
    height: 40px;
    line-height: 40px;
    width: 108px;
}

.form-group.googlelink .google_link a {
    color: #000;
    display: block;
    line-height: 40px;
    text-decoration: none;
}

.form-group.googlelink .google_link a span {
    vertical-align: middle;
}

.form-group.googlelink .google_link a img {
    width: 60px;
    padding-left: 5px;
    padding-right: 5px;
    vertical-align: middle;
}

.sidebar-menu .dropdown ul {
    padding-left: 0;
    margin-top: 15px;
}

.sidebar-menu .dropdown ul li {
    list-style: none;
}

.sidebar-menu .dropdown ul li a {
    display: block;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    white-space: nowrap;
    padding: 0;
    color: #77787d;
}

.sidebar-menu .dropdown ul li.active a {
    color: #dd3355;
}

.dataTable .checkbox {
    padding-left: 0;
    margin: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #dd3355 !important;
    color: #fff !important;
    border-color: #dd3355;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid #dd3355;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    border: 1px solid #ccc;
    background: #ccc;
    color: #fff !important;
    opacity: 0.6;
}

.dataTables_wrapper .dt-buttons {
    float: left;
    margin-right: 25px;
    margin-left: 10px;
}

.dataTables_wrapper .dt-buttons a {
    color: #000;
}

#data-table tbody tr .preview_btn {
    display: none;
    padding: 0 10px;
    float: right;
}

#data-table tbody tr:hover .preview_btn {
    display: block;
}

#previewForm .left_third_box .form-group label.control-label,
#previewForm .left_box_form .form-group label.control-label {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    left: 0;
}

#previewForm .form-control[readonly] {
    background: #fff;
}

.config_list.panel-body {
    padding: 0;
}

.config_list li {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
}

.config_list li.list-group-item a {
    color: #444;
    display: block;
    background: none;
    padding: 10px 15px;
    text-decoration: none;
    border-bottom: 1px solid #dd3355;
    margin-bottom: 1px;
}

.config_list li.list-group-item:last-child a {
    border: 0;
    margin-bottom: 0
}

.config_list li.list-group-item.active a {
    background: #dd3355;
    color: #fff;
}

.config_list li.list-group-item.active a,
.config_list li.list-group-item:hover a,
.config_list li.list-group-item a:focus {
    background: #dd3355;
    color: #fff;
}

.config_list .list-group {
    margin-bottom: 0;
}

.content-tabs.nav-tabs.nav-justified>li>a {
    border: 0 !important;
    background: #e6e6e6;
    color: #333;
    text-transform: uppercase;
}

.content-tabs.nav-tabs.nav-justified>li.active>a {
    color: #dd3355;
    pointer-events: none;
    font-weight: bold;
}

.company-body .tab-content {
    position: relative;
}

#map_iframe {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

.btn {
    border-radius: 5px;
}

.select2-search--dropdown {
    display: block;
    padding: 15px;
    background: #eee;
    border-radius: 4px 4px 0px 0px;
    border-radius: 5px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #dd3355;
    outline-color: #dd3355;
    border-radius: 6px;
}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option[aria-selected=true] {
    background: none
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #eee;
    color: #363640;
}

.select2-results__option {
    padding: 10px 15px;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: 1px solid #eee;
}

.select2-results .select2-results__options::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    border-radius: 0;
    background-color: #fff;
    border: 1px solid #ccc;
}

.select2-results .select2-results__options::-webkit-scrollbar {
    width: 12px;
    background-color: #fff;
}

.select2-results .select2-results__options::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #CCCCCC;
}

#config_sidebar {
    padding: 0 17px 17px 17px;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:hover,
.nav-pills>li.active>a:focus {
    background-color: #ff4c6d;
}

#config_sidebar h5 {
    margin-top: 18px;
}

#config_sidebar h5:first-child {
    margin-top: 0;
}

[data-role="dynamic-fields"]>.form-inline+.form-inline {
    margin-top: 0.5em;
}

[data-role="dynamic-fields"]>.form-inline [data-role="add"] {
    display: none;
}

[data-role="dynamic-fields"]>.form-inline:last-child [data-role="add"] {
    display: inline-block;
}

[data-role="dynamic-fields"]>.form-inline:last-child [data-role="remove"] {
    display: none;
}

[data-role="dynamic-fields"]>.form-inline .btn-add {}

[data-role="dynamic-fields"]>.form-inline .remove-btn {
    cursor: pointer;
}

[data-role="dynamic-fields"]>.form-inline .form-control {
    color: #666;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #908d8d;
    border-radius: 5px;
    padding: 5px 10px;
}


/*
Company Tabs
*/

.innertab .nav-tabs {
    border-bottom: 2px solid #b5b6ba;
}

.innertab .nav-tabs>li.active>a,
.innertab .nav-tabs>li.active>a:hover,
.innertab .nav-tabs>li.active>a:focus {
    color: #dd3355;
    background-color: transparent;
    border: none;
    cursor: default;
}

.innertab .nav-tabs>li.active>a {}

.innertab .nav-tabs>li>a:hover {
    border: none;
    background: none;
}

.innertab .nav-tabs>li>a {
    border: none;
    color: #35353f;
    padding: 20px 15px;
}

.innertab .nav-tabs>li>a i {
    padding-right: 5px;
}

.tab-content .actions-group {
    position: absolute;
    bottom: -45px;
    bottom: -90px;
    margin-bottom: 0;
}

.actions-group button.btn-primary {
    background-color: #bfbfbf;
    border: 2px solid #000;
}

.actions-group .btn-primary:active:hover,
.actions-group .btn-primary.active:hover {}

.innertab .nav-tabs>li>a::after {
    content: "";
    background: #d5455e;
    height: 14px;
    width: 14px;
    border-radius: 14px;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: -7px;
    transition: all 250ms ease 0s;
    transform: scale(0);
    z-index: 1;
}

.innertab .nav-tabs>li.active>a::after,
.innertab .nav-tabs>li:hover>a::after {
    transform: scale(1);
}

.nav-justified>li {
    vertical-align: top;
}

.custom-file-upload {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #cccccc;
}

.tab-content .panel-body {
    padding: 0px 15px 15px 15px;
}

.custom-file-upload .btn,
.custom-file-upload .file-upload-button {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0;
    font-weight: bold;
    width: 130px;
    background: url('../images/upload_file.jpg') left center no-repeat;
    height: 50px;
    text-align: right;
    float: left;
    border: 0;
}

.custom-file-upload .file-upload-input {
    float: right;
    width: calc(100% - 130px);
    height: 50px;
    border: 0;
    cursor: not-allowed;
    text-align: right;
    pointer-events: none;
}

.custom-file-upload input[type=file].form-control {
    font-size: 100px;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    width: 100%;
    height: 50px;
}

.btn-ajax,
.btn-ajax:hover,
.btn-ajax:focus,
.btn-ajax:active {
    background: url('../images/ajax-loader.gif') left top no-repeat;
    width: 32px;
    height: 32px;
    padding: 0;
    display: none;
    box-shadow: none;
}

#social_channels {
    background: none;
    border: 0;
    border-bottom: 1px solid #ccc;
    width: 100%;
    min-height: 35px;
}

.social_icon_box {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ccc;
}

#socialChannelsUpdate h3 {
    color: #333;
    font-weight: 500;
    margin-bottom: 35px;
    font-size: 22px;
}

.social_icon_box .icon_box_title .icon {
    display: inline-block;
    width: 40px;
    vertical-align: middle;
}

.social_icon_box .icon_box_title .icon i {
    color: #dd3355;
    font-size: 30px;
}

.social_icon_box .icon_box_title .title {
    display: inline-block;
    background: #ccc;
    min-height: 30px;
    vertical-align: top;
    max-width: calc(100% - 30px);
    width: auto;
    padding: 0 15px;
    line-height: 26px;
    border: 2px solid #acacac;
    min-width: 170px;
    text-align: center;
    color: #333;
}

.social_icon_box .icon_box_inputs {
    margin-top: 25px;
}

.social_icon_box .icon_box_inputs .label {
    color: #333333;
    font-size: 12px;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 10px;
    display: block;
    text-align: left;
}

.social_icon_box .icon_box_inputs .input .form-control {
    background: #EEEEEE;
    border: 2px solid #dd3355;
    height: 50px;
    width: 300px;
    max-width: 100%;
}

.tooltip_templates {
    display: none
}

.tooltipster-sidetip .tooltipster-box {
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 4px;
    padding: 25px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #ccc;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #fff;
}

#social_channels {
    text-align: left;
}

#social_channels i {
    margin-right: 10px;
    color: #dd3355;
}

#tooltip_content #socialChannelsUpdate .alert {
    margin-top: 20px;
}

h3,
.h3 {
    font-size: 24px;
    line-height: 29px;
}

p {
    font-size: 14px;
    line-height: 22px;
}

.control-label {
    font-size: 12px;
    line-height: 24px;
}


/*.input-sm{ width: 30%; }*/

.form-group {
    margin-bottom: 15px;
}


/*#name {
    padding-left: 0px;
    }*/

.left_third_box .form-group .form-control,
.left_box_form .form-group .form-control {
    border-color: #b1b8bf;
}

.left_third_box .form-group .form-control,
.left_box_form .form-group .form-control {
    padding-left: 5px;
}

.noborder .select2-container--default .select2-selection--single {
    border: 0;
}

.noarrow .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.color_black .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #35353f;
    font-size: 12px;
}

.color_black .select2-container--default .select2-selection--single .select2-selection__arrow b {
    background: #35353f;
}

.select_icon .select2.select2-container {
    width: 85% !important;
    display: inline-block;
}

.datepicker-container .datepicker {
    width: 100%;
    background: none;
    border: 0;
    cursor: pointer;
    display: inline-block;
}

.onlyborderbottom.form-control {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
    padding-left: 5px;
}

.add_contact_schedule {
    margin-bottom: 15px;
}

.contact_list_schedule .list-group .list-group-item {
    background: #ddd;
    margin-bottom: 10px;
}

.contact_list_schedule .list-group .list-group-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #b3b3b3;
}

.contact_list_schedule .list-group .list-group-item h4 {
    margin-top: 6px;
    font-size: 12px;
}

.contact_list_schedule .list-group .list-group-item .close_btn a {
    position: relative;
    top: 10px;
}

.task_type_box .select2.select2.select2-container {
    display: inline-block;
    width: 80% !important;
}

.task_queue_box .select2.select2.select2-container {
    display: inline-block;
    width: 75% !important;
}

.note-editor .btn-default {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #dddddd;
}

.note-editor .btn-default:hover,
.note-editor .btn-default:focus,
.note-editor .btn-default:visited,
.note-editor .btn-default:active,
.note-editor .btn-default.active,
.note-editor .open>.dropdown-toggle.btn-default {
    color: #fff;
    background-color: #dd3355;
    border-color: #dd3355;
}

.ajax-loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: #0000008a;
    width: 100%;
    height: 110%;
    z-index: 99999999999999999999;
    display: none;
}

.ajax-loader.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ajax-loader span {
    background: url(../images/ajax-loader-white.gif) center top no-repeat;
    padding: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
}

.comapny_bottoms {
    margin-top: 100px;
}

.comapny_bottoms .tab-content {
    padding: 20px 10px;
}

.comapny_bottoms .tab-content .single_Activity_log {
    float: left;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 7px;
    margin-bottom: 15px;
}

.comapny_bottoms .innertab .nav-tabs>li>a {
    border-bottom: 2px solid transparent;
    position: relative;
    top: 1px;
}

.comapny_bottoms .innertab .nav-tabs>li.active>a {
    border-bottom: 2px solid #000;
}

.comapny_bottoms .innertab .log_titles {
    float: left;
    width: 100%;
}

.comapny_bottoms .innertab .log_titles .log_title {
    margin-bottom: 5px;
}

.comapny_bottoms .innertab .log_actions .edit_log_activity {
    margin-right: 10px;
}

.comapny_bottoms .innertab .log_top_section {
    float: left;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
}


/*al*/

.ema-main {
    width: 100%;
    display: table;
    padding: 0px 15px;
    margin-bottom: 15px;
}

.ema-cot {
    width: 100%;
    display: table;
    padding: 15px 0px;
    border-bottom: 2px solid #b5b6ba;
}

.ema-cot p span {
    font-weight: 500;
}

.ema-cot p {
    margin-bottom: 0px;
    color: #35353f;
    font-size: 12px;
}

.btn-not {
    border-color: #b4b7bc !important;
    background-color: #cccccc;
    color: #35353f;
    font-weight: 400;
}

.btn-not:hover {
    color: #35353f;
}

.btn-dis {
    background-color: #dd3355;
    border-color: #dd3355;
    margin-left: 12px;
}

.btn-dis:hover {
    background-color: #dd3355;
    border-color: #dd3355;
}

a.cre-fol {
    margin-left: 20px;
    line-height: 36px;
    color: #35353f;
    text-decoration: none;
}

.ema-lgo {
    width: 100%;
    display: table;
    padding: 5px 0px;
    margin-bottom: 15px;
    border-bottom: 2px solid #b5b6ba;
}

.ema-lgo span {
    color: #35353f;
    font-size: 12px;
}

.form-group.tex-min {
    padding: 0px 15px;
}

.bot-ico {
    width: 100%;
    display: table;
    padding: 0px 15px;
    margin-bottom: 15px;
}

.bot-ico ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.bot-ico li {
    float: left;
    padding-right: 20px;
}

.bot-ico li img {
    height: 18px;
}

.datepicker-container img:first-child {
    position: absolute;
    top: 7px;
    left: 0;
    width: 20px;
}

.datepicker-container {
    padding: 0px 22px;
    position: relative;
}

.calsa {
    padding: 0px 20px;
    position: relative;
}

.calsa img:first-child {
    position: absolute;
    top: 8px;
    z-index: 1;
    width: 20px;
    left: 0px;
}

.calsa img:last-child {
    position: absolute;
    top: 9px;
    width: 18px;
}

img.arr-pl {
    width: 18px;
    margin-top: -3px;
    margin-left: 14px;
}

.bor-non {
    border: 0px solid;
}

.dus-dat p {
    position: absolute;
    left: 0px;
    margin: 0px;
    line-height: 37px;
    padding-right: 30px;
}

.dus-dat p img {
    left: 66px !important;
}

.dus-dat {
    width: 100%;
    position: relative;
    padding: 0px 0px 0px 90px;
    background: url(http://mcdr.us.to/kaizencrm/images/left-bottom.png) no-repeat;
    background-position: center right;
    background-size: 18px;
}

.cal-ae {
    width: 100%;
    background: url(http://mcdr.us.to/kaizencrm/images/left-bottom.png) no-repeat;
    background-position: center right;
    background-size: 18px;
}

.ema-thos {
    width: 100%;
    display: table;
    padding: 4px 0px;
    border-bottom: 2px solid #b5b6ba;
}

.calsa .select2-selection__rendered {
    padding-right: 0px !important;
}

.calsa .select2-container--default .select2-selection--single .select2-selection__arrow b {
    background: url(http://mcdr.us.to/kaizencrm/images/left-bottom.png);
    width: 18px;
    height: 18px;
    background-size: cover;
    right: -15px;
    top: 7px;
}

.calsa .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    display: none;
}

.tod-slec label {
    position: absolute;
    left: 5px;
    top: 7px;
}

.tod-slec {
    width: 100%;
    display: table;
    padding-left: 50px;
    position: relative;
}

.asi-sd b {
    display: none !important;
}

.tod-slec .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    display: none;
}

.tod-slec .select2-container--default .select2-selection--single .select2-selection__arrow b {
    background: url(http://mcdr.us.to/kaizencrm/images/left-arrow.png);
    width: 18px;
    height: 18px;
    background-size: cover;
    right: -15px;
}

.rel-qu {
    width: 100%;
    display: table;
    padding: 10px 0px;
}

.emai-rm {
    padding: 0px 15px;
}

.rem-em {
    width: 100%;
    display: table;
    position: relative;
    padding: 0px 0px 0px 120px;
    background: url(http://mcdr.us.to/kaizencrm/images/left-bottom.png) no-repeat;
    background-position: center right 36px;
    background-size: 18px;
}

.rem-em p {
    position: absolute;
    left: 0;
    line-height: 36px;
}

.datepicker-container img:last-child {
    position: absolute;
    left: 0;
    line-height: 36px;
}

.rem-em .form-control {
    background-color: transparent;
    border: 0px solid;
    padding-left: 10px;
    cursor: pointer;
}

.alg {
    margin-top: 8px;
}

.emai-rm img {
    right: 0px;
}

.rem-em img {
    position: absolute;
    top: 6px;
    width: 20px;
    right: -24px;
}

.rel-qu img {
    float: right;
    margin-top: -20px;
}

.asi-co label {
    position: absolute;
    left: 0px;
    top: 9px;
}

.asi-co {
    position: relative;
    padding-left: 86px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 0px;
}

.note-editor .btn-default {
    background-color: #fff;
    border-radius: 0px;
    border: none;
}

.panel-heading.note-toolbar {
    border-bottom: 1px solid #ccc;
}

.note-editor.note-frame .note-editing-area .note-editable {
    min-height: 150px;
}

.color-addon {
    display: inline-block;
    padding: 8px 23px 8px 9px;
    margin-top: -10px;
}

.grid span.color_code {
    width: 15px;
    height: 15px;
    display: block;
}

.colorpicker-component label {
    width: 100%;
    float: left;
}

.colorpicker-component input {
    width: 200px;
    float: left;
}

.colorpicker-component .color-addon {
    position: relative;
    top: 10px;
    left: -5px;
}

.kpselect {
    border-radius: 4px;
    padding: 5px;
    color: #383838;
}


/*csss  correct*/

#jobs h3 {
    padding: 1rem;
    font-weight: 700;
}


/** Shreyash (07-10-2020) for drgula */

.gu-mirror {
    position: fixed !important;
    margin: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
}

.gu-hide {
    display: none !important;
}

.gu-transit {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
}

.gu-mirror {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
}

.flex-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.flex-between span {
    width: 50%;
}

.flex-between strong {
    width: 50%;
}

.flex-between input {
    width: 80%;
}

input.footer-total {
    border: none;
    /* text-align: right; */
}

select.form-control {
    height: 40px !important;
}


/* start my css 29-10-2020 */

.panel.kz__custom-form form .panel-body .flex-between input {
    text-align: right;
}

.panel.kz__custom-form form .panel-body .flex-between span {
    width: auto;
}

.kz__table select.form-control {
    width: 100px;
}

.kz__details-second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.kz__footerdetails-wrap .kz__details {
    min-width: 35%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
}

.kz__footerdetails-wrap .kz__details-first.kz__details {
    min-width: 45%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
}

.kz__footerdetails-wrap .kz__details-middle.kz__details {
    min-width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    padding-right: 15px;
}

.kz__footerdetails-wrap .kz__details-second.kz__details {
    min-width: 30%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
}

.kz__details-second.kz__details .first {
    padding: 0 15px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.kz__details-second.kz__details .second {
    padding: 0px 15px;
}

.kz__bottom-details {
    margin-top: 20px;
    padding: 15px 0 0;
}

.table-responsive.kz__table input {
    padding: 0 5px;
    text-align: center;
}

.kz__footerdetails-wrap .flex-between strong {
    width: auto;
}

.kz__details-second.kz__details .first,
.kz__details-second.kz__details .second {
    min-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.kz__custom-form .control-label {
    font-size: 14px;
    margin-bottom: 3px;
}

.kz__custom-form .form-control,
.kz__custom-form .select2-container--default .select2-selection--multiple {
    background-color: transparent !important;
    border-bottom: 1px solid #ddd !important;
    padding: 0;
    border: 0;
    border-radius: 0;
    height: 35px;
}


/*.kz__custom-form .panel-body .row {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    }*/

.kz__custom-form .panel-body hr {
    display: none;
}


/*
.kz__table .form-control{
    width:100px;
    }*/

.kz__bottom-details {
    margin-top: 20px;
}

.btn-primary:focus {
    outline: 0;
}

.table-responsive.kz__table::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    background: #dd3355;
}

.table-responsive.kz__table::-webkit-scrollbar-thumb:horizontal {
    background: #000;
    border-radius: 10px;
}

.progress-bar {
    width: 0;
    animation: progress 1.5s ease-in-out forwards;
    .title {
        opacity: 0;
        animation: show 0.35s forwards ease-in-out 0.5s;
    }
}

@keyframes progress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.time-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.progress {
    margin: 0;
}

.kz__table td.actions i {
    color: #fff;
    background-color: #fc3355;
    width: 20px;
    height: 20px;
    line-height: 22px;
    text-align: center;
    border-radius: 100px;
    font-size: 12px !important;
    margin: 0 2px;
}

.kz__table td.actions .fa:before {
    font-size: 12px;
    text-align: center;
    padding-left: 1px;
}


/* end my css 29-10-2020 */

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.bootstrap-timepicker-widget.dropdown-menu {
    z-index: 99999!important;
}

.datepicker {
    z-index: 1600 !important;
    /* has to be larger than 1050 */
}


/*start my css 02-11-2020 */

.kz__footerdetails-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    padding: 20px 0 0;
}


/* start my css 03-11-2020 */

.panel.kz__custom-form,
.panel.kz__list-quote {
    /* box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15); */
    border-radius: 10px;
    padding: 0;
    border: 1px solid #ddd;
}

.kz__custom-form .select2-container--default .select2-selection--single {
    border: 0;
    height: 35px;
    padding: 5px 15px 5px !important;
    border-bottom: 1px solid #ddd;
    background-color: transparent !important;
}

.input-group-addon {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-color: transparent;
    color: #111;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    font-size: 12px;
}

.kz_active-wrap input {
    margin-right: 7px;
}

.kz__custom-form .panel-footer {
    background-color: transparent;
    text-align: center;
}

.kz__custom-form .panel-footer .btn-primary {
    padding: 10px 35px;
    font-size: 18px;
}

.kz__custom-form #matrix-tbl_wrapper table tbody tr td:last-child a {
    margin-right: 5px;
}

.kz__custom-form select.form-control {
    height: 35px !important;
    padding: 0 15px;
}

.kz__select-arrow {
    display: inline-block;
    width: 100%;
    position: relative;
}

.kz__select-arrow:before {
    box-sizing: border-box;
    height: 8px;
    width: 8px;
    border-style: solid;
    border-color: #111;
    border-width: 0px 3px 3px 0px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;
    position: absolute;
    content: '';
    right: 22px;
    top: 13px;
    z-index: 9;
    pointer-events: none;
    cursor: pointer;
}

.kz__custom-form select::-ms-expand {
    display: none !important;
}

.kz__custom-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}


/*start my css 04-11-2020 */

.kz__custom-form .kz__table .form-control,
.kz__custom-form .kz__table .select2-container--default .select2-selection--multiple {
    background-color: transparent !important;
    border: 0;
    padding: 0 5px;
    border: 0 !important;
}

.kz__table table tr td {
    padding: 0px;
    text-align: center;
    border-right: 1px solid #ddd;
}

.kz__table table tr {
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.panel-body .kz__bootom-line:nth-child(even) {
    background-color: #fafafa;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.kz__bootom-line {
    padding: 15px;
}

.kz__table table thead tr th {
    border-top: 1px solid #ddd !important;
    text-align: center;
    padding: 5px 0!important;
    border-right: 1px solid #ddd;
    border-bottom: 0;
}

.kz__table {
    margin: 20px 0 0;
}

.kz__custom-form .kz__button {
    margin: 20px 0 0;
}

.kz__custom-form table .form-control,
.kz__custom-form table select2-container--default .select2-selection--multiple {
    border-bottom: 0 !important;
}

.kz__matrix-create-table td {
    padding: 0 10px!important;
}

.kz__matrix-create-table td {
    border-right: 1px solid #ddd !important;
    border-top: 0 !important;
}

.kz__matrix-create-table tr {
    border-bottom: 1px solid #ddd;
}

.kz__matrix-create-table th {
    border-right: 1px solid #ddd;
    border-top: 1px solid #ddd !important;
    padding: 10px !important;
    border-bottom: 0 !important;
}

.kz__matrix-create-table thead,
.kz__table table thead {
    background-color: #fafafa;
}

.kz__matrix-create-table {
    margin-top: 20px;
}

.kz__table table thead th {
    color: #d35;
}

.kz__table table tr td:last-child a {
    position: relative;
    top: 8px;
}

.help-block.with-errors.text-danger {
    font-size: 12px;
}

.has-error .form-control {
    box-shadow: unset !important;
}

.bootstrap-timepicker-widget table td a i {
    margin-top: 2px;
    font-size: 18px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bootstrap-timepicker-widget i.icon-chevron-up:before {
    content: "\f106";
}

.bootstrap-timepicker-widget i.icon-chevron-down:before {
    content: "\f107";
}

.kz__custom-form .kz__table .detail-date {
    border-right: 1px solid #ddd !important;
}

.container.kz__full-width {
    width: 100%;
}


/* start new quote page css*/

.kz__quote-design ul.nav.nav-pills {
    background-color: #d5d5d5;
    width: 100%;
}

.kz__quote-headwrap .form-group.kz__btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.kz__quote-headwrap .kz__title-right {
    margin: 0 10px 0 0;
}

.kz__quote-headwrap .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.kz__quote-headwrap h2,
.kz__quote-tabtitle {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

.kz__quote-headwrap {
    padding: 20px 0px;
}

.kz__quote-design .nav-pills>li.active>a,
.kz__quote-design .nav-pills>li.active>a:hover,
.kz__quote-design .nav-pills>li.active>a:focus {
    background-color: #b9b9b9;
}

.kz__quote-design ul.nav.nav-pills a {
    color: #fff;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    z-index: 8;
}

.kz__quote-headwrap .kz__title-right a {
    color: #777777;
    font-size: 16px;
    font-weight: 500;
}

.kz__quote-headwrap .kz__title-right.kz__del-btn a {
    color: #fc3355;
}

.kz__first-btn {
    background-color: #3cbe41;
    border-color: #3cbe41;
}

.kz__second-btn {
    background-color: #353e57;
    border-color: #353e57;
}

.kz__quote-headwrap .kz__title-right a i {
    padding: 0 5px 0 0;
}

.kz__quote-design .panel-default {
    border: 0;
}

.kz__quotetab-content {
    background-color: #eeeeee;
    padding: 20px 0px 30px;
    margin: 0 0 20px;
}

.kz__full-width.kz__quote-design .tab-content .panel-body {
    padding: 0;
}

.kz__quote-design .row {
    margin: 0;
}

.kz__full-width.kz__quote-design {
    padding: 0;
}

.kz__quotetab-content input,
.kz__quotetab-content textarea,
.kz__quotetab-content .select2-container--default .select2-selection--single {
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    height: 45px;
    border-radius: 8px;
    padding: 10px 18px;
    color: #777777;
    background-color: #ffffff !important;
    border: 1.5px solid rgb(0 0 0 / 27%);
    font-size: 12px;
}
.kz__quotetab-content input::placeholder {
    color: #777777;
}
.form-control{
    font-size: 12px;
}
.kz__quotetab-content textarea {
    height: auto;
}

.kz__quotetab-content .input-group-addon {
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    background-color: #fff;
    border: 1px solid #cccccc;
    border-radius: 0px 5px 5px 0px;
    border-left: 0;
}

.kz__border-remove input {
    border-right: 0;
}

.kz__quotetab-content .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #777777;
}

.kz__quotetab-content .control-label {
    color: #777777;
    font-size: 12px;
    font-weight: 400;
}

.kz__quotetab-content .select2-container--default .select2-selection--single {
    position: relative;
}

.kz__quotetab-content .select2-container--default .select2-selection--single:before {
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #5f5f5f;
    content: '';
    position: absolute;
    right: 10px;
    top: 15px;
    border-radius: 5px;
}

.kz__quotetab-content .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    content: none;
}

.kz__quote-phnmail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.kz__quote-phnmail .phone,
.kz__quote-phnmail .mobile {
    min-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.kz__quotetab-content span.label.label-success {
    border-radius: 5px;
    padding: 5px 15px;
    font-weight: normal;
}

ul.nav.nav-pills.kz__quote-tabletab {
    background-color: #353e57;
    padding: 0 7px;
}

.kz__quote-design .kz__quote-tabletab.nav-pills>li.active>a,
.kz__quote-design .kz__quote-tabletab.nav-pills>li.active>a:hover,
.kz__quote-design .kz__quote-tabletab.nav-pills>li.active>a:focus,
.kz__quote-design .kz__quote-tabletab.nav>li>a:hover,
.kz__quote-design .kz__quote-tabletab.nav>li>a:focus {
    background-color: #1c2336;
}

.kz_quote-pagecontent .panel {
    box-shadow: unset !important;
}

.kz__quote-design .kz__table table thead tr th {
    border-top: 0 !important;
    text-align: center;
    padding: 10px 5px !important;
    border-right: 1px solid #ddd;
    border-bottom: 0;
}

.kz__custom-form .dataTables_length>label select {
    width: 130px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.kz__quote-design .kz__table table thead {
    background-color: transparent;
}

.kz__quote-design .kz__table table tr {
    border-bottom: 1px solid #ddd;
    border-left: 0;
    border-right: 0;
}

.kz__quote-design .kz__table input,
.kz__quote-design .kz__table select.form-control,
.kz__quote-design .kz__table textarea {
    background-color: transparent;
    border: 0;
}

.kz__quote-design .kz__table table thead th {
    color: #5d5d5d;
}

.kz__quote-design .kz__table table thead tr th:last-child {
    border-right: 0px;
}

.kz__bottom-details .kz__details .second strong {
    color: #fc3355;
}

.kz__footerdetails-wrap .kz__label-title {
    color: #b9b9b9;
}

.kz__quote-design .kz__details-second.kz__details .first {
    border-left: 0;
    border-right: 0;
}

.kz__quote-design .kz__footerdetails-wrap .flex-between strong {
    font-size: 12px !important;
}

.page-content.kz_quote-pagecontent {
    background-color: #fff;
}

.kz__quote-headwrap .kz__title-right i {
    font-size: 20px;
}

.kz__quote-phnmail .phone {
    margin: 0 10px 0 0;
}


/* end new quote page css*/


/* start new quote page css*/

.panel.kz__task-block,
.kz__dash-section {
    border: 0;
    border-radius: 5px;
    box-shadow: 0px 0px 8px 0px #35353f2b;
}

.kz__task-title {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    text-transform: capitalize;
}

.kz__task-select .select2-container--default .select2-selection--single {
    background-color: #fafafa;
    border: 1px solid #ddd;
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    height: 45px;
    border-radius: 8px;
    padding: 10px 18px;
    color: #777777;
    line-height: 25px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    color: #000 !important;
}

.kz__task-block .dataTables_wrapper .dataTables_filter input,
.kz__list-quote .dataTables_wrapper .dataTables_filter input {
    border: 1px solid #dddddd;
    border-radius: 5px;
    background-color: #fafafa;
    padding: 10px;
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    width: 100%;
    margin: 10px 0 0;
}

.kz__task-block .dataTables_wrapper .dataTables_length {
    float: none;
}

.kz__task-block .dataTables_length label>select,
.kz__list-quote .dataTables_length label>select {
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fafafa;
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    padding: 5px;
}

.kz__task-block .progress .progress-bar,
.kz__task-block .progress {
    border-radius: 100px;
}

/* .kz__task-block .progress-bar {
    background-color: #dd3355 !important;
} */

.kz__task-block .time-div {
    padding: 5px 0 0;
}


/* end new quote page css*/


/* start my css 24-11-2020 */

.kz__table select {
    -webkit-appearance: none;
}

.kz__matrix-create-table tbody tr td:last-child {
    text-align: center;
}

.kz-custom-arraow {
    position: relative;
    width: 100%;
    display: inline-block;
}

.kz-custom-arraow:before {
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1c2336;
    right: 5px;
    top: 18px;
    cursor: pointer;
    pointer-events: none;
}


/* end my css 24-11-2020 */


/* start my css 25-11-2020 */

#add_time_form .modal-body .input-group.date .input-group-addon {
    border: 1px solid #cccccc;
}

#add_time_form .modal-body input:focus {
    border-color: #ccc;
}

.kz__quote-design ul.nav.nav-pills.kz__inner-tab {
    background-color: #fc3355;
}

.kz__quote-design .nav-pills.kz__inner-tab>li.active>a,
.kz__quote-design .nav-pills.kz__inner-tab>li.active>a:hover,
.kz__quote-design .nav-pills.kz__inner-tab>li.active>a:focus,
.kz__inner-tab.nav>li>a:hover,
.kz__inner-tab.nav>li>a:focus {
    background-color: #d52946;
}


/* end my css 25-11-2020 */


/* start my css 04-12-2020 */

.kz__note-content {
    background-color: #d3d3d3;
    border-radius: 10px;
    max-width: 80%;
    margin: 25px 40px 0;
}

.kz__noteinner-tab {
    background-color: transparent !important;
    margin: 25px 0;
}

.kz__noteinner-tab li.active a {
    background-color: #d9d9d9 !important;
    border-radius: 10px;
}

.kz__noteinner-tab li a {
    color: #777777 !important;
    font-size: 20px !important;
}

.kz__noteinner-tab li a i {
    padding-right: 12px;
}

.kz__noteinner-tab li a {
    padding: 8px 15px !important;
}

.kz__noteinner-tab li:first-child {
    margin-right: 15px;
}

.kz__note-content h4 {
    color: #777777;
    font-weight: bold;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.kz__note-content .form-group label {
    color: #777;
    font-weight: bold;
}

.kz_flex {
    margin: 20px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.kz_flex span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.kz_flex input {
    box-shadow: unset;
    height: auto;
    margin: 0;
}

.kz_flex label {
    margin-bottom: 0;
    margin-left: 8px;
}

.tab-content select {
    -webkit-appearance: none;
}

.kz__select-customarrow {
    position: relative;
    width: 100%;
    display: inline-block;
}

.kz__select-customarrow:before {
    width: 0px;
    height: 0px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #333;
    content: '';
    position: absolute;
    right: 10px;
    top: 16px;
    cursor: pointer;
    pointer-events: none;
}

.kz__mailform-wrap,
select#mail_template {
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
    display: inline-block;
    width: 100%;
    background-color: #fff;
    padding: 20px 10px;
    border: 2px solid #ddd;
    border-radius: 10px;
    margin: 20px 0;
}

select#mail_template,
.kz__text-editer {
    margin: 0;
}

.kz__text-editer .note-editor.note-frame {
    border: 0;
    border-radius: 10px;
}

.kz__chosefile {
    margin: 25px 0 30px;
}

button#mail_reset {
    background-color: #353e57;
}

button#mail_submit {
    background-color: #d35;
    color: #fff;
    margin-right: 15px;
}

button#mail_reset:hover {
    background-color: #d35;
}

button#mail_submit:hover {
    background-color: #353e57;
}

.kz__mailform-wrap .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.kz__mailform-wrap input {
    border: 0;
    padding: 0;
    height: auto;
}

.kz__mailform-wrap span {
    width: 60px;
    color: #777777;
    font-weight: bold;
}

.kz__note-mailhistory .note-panel {
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
    display: inline-block;
    width: 100%;
    background-color: #fff;
    padding: 0 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
}

.kz__note-mailhistory .panel-body .col-md-12 {
    padding: 0;
}

.kz__note-mailhistory .flex-between strong {
    color: #777777;
    font-weight: bold;
}

#correspondence {
    padding: 15px 0 40px;
}

select#mail_template {
    width: auto;
}

.kz__mail-select .kz__select-customarrow {
    width: auto;
}

.kz__mail-sectionwrap {
    margin-right: 30px;
}

.kz__input-color input {
    color: red;
}

.email_history.kz__note-mailhistory {
    border-top: 2px solid #ddd;
    padding-top: 15px;
    margin-top: 10px;
}

.kz__quote-wrap .tab-content {
    background-color: #ffffff;
}

.panel-body.kz__cenetr-box {
    background-color: #eee;
}

.note-editor.panel,
.notes_history.kz__notes-history .note-panel {
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2) !important;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    padding: 20px 10px;
    border: 2px solid #ddd !important;
    border-radius: 10px;
}

.notes_history {
    border-top: 2px solid #ddd;
    padding: 15px 0 0;
    margin: 15px 0 0;
}

.notes_history h2 {
    color: #777777;
    font-weight: 500;
    font-size: 18px;
}

.notes_history .flex-between span {
    float: right;
    text-align: right;
    font-size: 14px;
    color: #999999;
}

.notes_history .flex-between p {
    font-weight: bold;
    color: #777777;
    font-size: 18px;
}

.notes_history .panel-heading.flex-between {
    padding: 0 0 15px;
}

.kz__text-editer .note-editor.note-frame.panel {
    width: 100%;
}

.kz__matrix-create-table td:last-child {
    border-right: 0 !important;
}


/* end my css 04-12-2020 */


/* start my css 28-12-2020 */

.kz__quoteinvoicetab-table table thead tr th,
.kz__quoteinvoicetab-table table tbody tr td,
.kz__quoteinvoicetab-table table thead tr td {
    border-right: 1px solid #ddd;
}

.kz__quoteinvoicetab-table table thead tr th:last-child,
.kz__quoteinvoicetab-table table tbody tr td:last-child,
.kz__quoteinvoicetab-table table thead tr td:last-child {
    border-right: 0;
}

.kz__quoteinvoicetab-table table thead tr th {
    border-bottom: 0;
    color: #5d5d5d;
}

.kz__related-invoice table thead tr td {
    color: #5d5d5d;
    font-weight: bold;
}

.kz__quoteinvoicetab-table h2 {
    color: #000;
    font-weight: 500;
    font-size: 25px;
    padding-bottom: 30px;
}

.kz__quoteinvoicetab-table table tbody tr td,
.kz__quoteinvoicetab-table table tfoot tr th:first-child,
.kz__quoteinvoicetab-table table tfoot tr th:nth-child(3) {
    color: #5d5d5d;
    font-weight: normal;
}

.kz__quoteinvoicetab-table table tfoot tr th:nth-child(2),
.kz__quoteinvoicetab-table table tfoot tr th:nth-child(4) {
    text-align: right;
}

.kz__quoteinvoicetab-table.kz__related-invoice .flex-between {
    align-items: center;
}

.kz__quoteinvoicetab-table.kz__related-invoice h2 {
    padding-bottom: 0;
    margin-bottom: 0;
}

.kz__quoteinvoicetab-table.kz__related-invoice {
    padding: 0 20px;
}

.kz__table td.actions a {
    display: inherit;
}

.kz__table input.form-control.detail-date {
    margin-left: 5px;
}

.kz__tasklist-blockwrap .kz__task-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.kz__tasklist-blockwrap .kz__tasklist-block.right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.kz__tasklist-blockwrap .kz__tasklist-block label {
    width: 100%;
    color: #777777;
    font-weight: 500;
    font-size: 12px;
}

.kz__tasklist-blockwrap .kz__task-selectinner input#tbl-search {
    background-color: #fafafa;
    border: 1px solid #ddd;
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    height: 45px;
    border-radius: 8px;
    padding: 10px 18px;
    color: #777777;
}

.kz__tasklist-blockwrap .kz__task-selectinner #filter_by_manager{
    background-color: #fafafa !important;
    border: 1px solid #ddd;
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    height: 45px !important;
    border-radius: 8px;
    padding: 8px 18px;
    color: #777777;
}

.kz__tasklist-blockwrap.kz__company__wrap .kz__task-selectinner #filter_by_manager {
    width: 50%;
}

.kz__tasklist-blockwrap span.select2.select2-container.select2-container--default {
    width: 100% !important;
}

.kz__tasklist-blockwrap .kz__task-selectinner {
    min-width: 33.33%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
}

.kz__tasklist-blockwrap .kz__tasklist-block.right {
    min-width: 65%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
}

.kz__tasklist-blockwrap .kz__tasklist-block.left {
    min-width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
}

.kz__tasklist-blockwrap .kz__tasklist-block.middle {
    min-width: 10%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
}

.kz__tasklist-blockwrap .kz__task-selectinner:nth-child(2) {
    margin: 0 10px;
}

.kz__tasklist-blockwrap .kz__task-selectinner {
    min-width: 32%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
}

.kz__tasklist-blockwrap h3 {
    color: #000;
    font-weight: 500;
}

.form-group.custom-length {
    margin: 20px 0;
}

.kz__tasklist-blockwrap {
    margin-bottom: 30px;
}


/* end my css 28-12-2020 */


/* start my css 29-12-2020 */

.kz__tasklist-blockwrap.kz__company__wrap .kz__tasklist-block.left,
.kz__tasklist-blockwrap.kz__company__wrap .kz__tasklist-block.right {
    min-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.kz__tasklist-blockwrap.kz__company__wrap .kz__tasklist-block.right {
    display: flex;
    justify-content: flex-end;
}

.kz__tasklist-blockwrap.kz__company__wrap .kz__task-selectinner input#tbl-search {
    width: 50%;
}

.kz__company-section .dataTables_length label {
    display: flex;
    align-items: center;
    width: 100% !important;
}

.kz__company-section .dataTables_wrapper .dataTables_length select {
    margin: 0 5px;
}

.kz__company-section .kz__list-btn .kz__list-bgbtn {
    margin-left: 0;
}

.kz__list-quote.kz__company-section .dataTables_wrapper .dataTables_length {
    float: none;
    margin: 0;
}

.kz__company-section .dataTables_wrapper .dataTables_info {
    padding-top: 0;
}

.kz__company-section .dataTables_wrapper .row:nth-child(2) {
    display: flex;
    align-items: center;
}

.kz__company-section table.dataTable thead th {
    border-bottom: 0;
    border-right: 1px solid #ddd;
    color: #777;
}

.kz__company-section table.dataTable thead th:last-child {
    border-right: 0;
}

.kz__company-section .sorting_disabled span#massRemover {
    color: #dd3355;
}


/* end my css 29-12-2020 */


/* start my css 30-12-2020 */

.kz__dash-block {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    padding: 20px;
}

.kz__dash-section {
    padding: 20px;
}

.kz__button-box a.kz__btn {
    background-color: #353e57;
    color: #fff;
    display: inline-block;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    margin: 0 0 10px;
    padding: 15px;
    text-transform: capitalize;
    font-size: 16px;
    letter-spacing: 0.7px;
}

.kz__button-box a.kz__btn:hover {
    text-decoration: none;
}

.kz__dash-block h3.title {
    color: #5d5d5d;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.kz__col-btn {
    color: #5d5d5d;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    background-color: transparent;
    border: 0;
    padding: 0;
    position: relative;
    width: 100%;
    text-align: left;
}

.kz__reminder-timerow {
    display: flex;
    justify-content: space-between;
}

.kz__reminder-timerow .left {
    display: flex;
    justify-content: space-between;
}

.kz__reminder-timerow span.title {
    color: #5d5d5d;
    font-weight: bold;
    font-size: 16px;
}

.kz__reminder-timerow .time,
.kz__reminder-timerow .date {
    color: #fc3355;
    font-size: 14px;
    font-weight: bold;
}

.kz__reminder-timerow .time {
    padding: 0 15px;
}

.kz__riminder-dropdown .dropdown-toggle {
    color: #c7c7c7;
    background-color: transparent;
    padding: 0;
}

.kz__riminder-dropdown .dropdown-toggle i {
    font-size: 20px;
}

.kz__reminder-timerow .right {
    display: flex;
}

.kz__riminder-status i.fa.fa-check {
    color: #ffffff;
    background-color: #fc3355;
    border-radius: 50px;
    padding: 4px;
    font-size: 12px;
}

.kz__riminder-status {
    margin-left: 10px;
}

.kz__riminder-dropdown .dropdown-menu {
    border-radius: 10px;
    border: 0;
    padding: 0px;
}

.kz__riminder-dropdown h6 {
    color: #dd3355;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 10px 10px 0;
}

.kz__riminder-dropdown .dropdown-menu a {
    color: #777;
    font-size: 14px;
    padding: 10px;
    display: inline-block;
    width: 100%;
}

.kz__riminder-dropdown .dropdown-menu a:nth-child(odd) {
    background-color: #f0f0f0;
}

.kz__riminder-dropdown .dropdown-menu a:hover {
    text-decoration: unset;
}

.kz__reminder-timerow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 3px;
    margin-bottom: 10px;
}

.kz__reminder-time {
    border-bottom: 3px dashed #ddd;
    padding-bottom: 20px;
}

.kz__reminder-timebottom {
    padding: 25px 0 10px;
}

.kz__reminder-timebottom .kz__reminder-timerow.one {
    border-bottom: 0;
}

.kz__reminder-timebottom .kz__reminder-desc {
    color: #777777;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.kz__reminder-details .checked .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fc3355;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.kz__reminder-details .checked input:checked~.checkmark:after {
    display: block;
}

.kz__reminder-details .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.kz__reminder-details .checked input:checked~.checkmark {
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.kz__reminder-details .checked:hover input~.checkmark {
    background-color: #ccc;
}

.kz__reminder-details .checkmark {
    position: absolute;
    top: -14px;
    right: 0px;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.kz__reminder-details .checked input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.kz__reminder-details .checked {
    display: block;
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.kz__contact-desh .custom-input input {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    width: 100%;
    border-radius: 5px;
    padding: 8px;
}

.custom-input {
    position: relative;
}

.custom-input i {
    color: #777;
    position: absolute;
    right: 15px;
    top: 12px;
}

.kz__dash-search-list {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    margin: 15px 0 0;
    border-radius: 5px;
    padding: 10px 0;
    overflow: auto;
    max-height: 344px;
}

.kz__dash-search-list::-webkit-scrollbar {
    width: 5px;
}

.kz__dash-search-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.kz__dash-search-list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.kz__dash-search-list ul {
    padding-left: 0;
}

.kz__dash-search-list ul li {
    list-style: none;
}

.kz__dash-search-list ul li a {
    display: flex;
    justify-content: space-between;
    color: #777;
    padding: 15px;
    font-size: 16px;
}

.kz__dash-search-list ul li:nth-child(even) {
    background-color: #f5f5f5;
}

.kz__dash-search-list h3 {
    color: #fc3355;
    font-size: 14px;
    padding: 0 15px;
    font-weight: bold;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    position: sticky;
    top: -10px;
    background-color: #fff;
}

.kz__sales-list.list-wrap {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.kz__dash-search-list ul li a:hover {
    text-decoration: none;
}

.kz__dash-section .panel-heading {
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
}

.kz__col-btn:before {
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #777;
    content: '';
    position: absolute;
    right: 0;
    top: 12px;
    border-radius: 5px;
    transform: rotate(180deg);
}

.kz__col-btn:hover,
.kz__col-btn.active,
.kz__col-btn:focus {
    background-color: transparent;
    color: #5d5d5d;
}

.collapsed.kz__col-btn:before {
    transform: unset;
}

.kz__riminder-dropdown i.fa.fa-ellipsis-h.dark-color {
    background-color: #7c7c7c;
    padding: 0 5px;
    line-height: 15px;
    border-radius: 5px;
    height: 13px;
}


/* end my css 30-12-2020 */


/* start my css 31-12-2020 */

.select2-results ul li:nth-child(odd) {
    background-color: #f5f5f5;
}

.list-wrap {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.list-wrap:last-child {
    border-bottom: 0;
}

.kz__task-block .kz__table small {
    font-weight: 500;
    padding-top: 5px;
    display: inline-block;
}

.kz__quote-wrap .kz__table table tr td.actions a {
    position: relative;
    top: 10px;
}


/* end my css 31-12-2020 */

.user-info .user-image img {
    width: 40px;
    height: 40px;
}


/* my css 25-12-2020 */

.kz__quote-wrap .kz__quotetab-content .input-group-addon {
    background-color: #f5f5f5;
}

.kz__quote-wrap .kz__footerdetails-wrap .kz__label-title {
    text-align: right;
    font-size: 12px;
}

.kz__quote-wrap .kz__table table tr td {
    vertical-align: top;
    padding: 15px 7PX !important;
}

.kz__quote-wrap .table-responsive.kz__table input {
    padding: 10px 5px 0;
    text-align: center;
}

.kz__quote-wrap .kz__table table tr td a i.fa-bars {
    padding-top: 14px;
    color: #fc3355;
}

.kz__quote-wrap .kz__table table tr td input[type="checkbox"] {
    margin-top: 12px;
}

.kz__quote-wrap .kz__table table tr td:last-child a {
    position: relative;
    top: 0px;
    color: #fc3355;
}

.kz__quote-wrap .add-tier-btn.kz__button {
    padding: 8px 20px;
    background: #FC3355;
    border-color: #FC3355;
}

.photo__cutsom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.photo__cutsom img {
    height: 100px;
    border-radius: 100%;
    width: 100px;
}


/* start my css 25-12-2020 */

.kz__table table thead tr th:first-child,
.kz__table table thead tr th:nth-child(2) {
    width: 30px !important;
}


/* end my css 25-12-2020 */


/* start my css 26-12-2020 */

.kz__quotetab-content .kz__border-remove i.fa.fa-arrow-right {
    color: #777;
    font-size: 18px;
    padding-left: 4px;
}

.kz__table table tr td:last-child {
    border-right: 0;
}

.kz__quote-wrap .table-responsive.kz__table input {
    padding: 0;
    height: auto;
}
.kz__table select.form-control {
    height: auto !important;
}
.progress .progress-bar {
    background-color: #353E57;
}

.kz__table .progress {
    margin: 0 0 5px;
}

#job_header p {
    font-size: 16px;
    font-weight: 500;
}


/* start my css 26-12-2020 */


/* start my css 04-01-2020 */

.form-horizontal.kz_user_form label {
    width: 100%;
    text-align: left;
    color: #333333;
    font-weight: 700;
    padding-bottom: 5px;
    font-size: 14px;
}

.form-horizontal.kz_user_form .form-group span {
    margin: 0 15px 0 0;
}


/* end my css 04-01-2020 */


/* start my css 06-01-2020 */

span.select2-dropdown.select2-dropdown--below {
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    border: 1px solid #ddd;
    top: 8px;
    border-radius: 10px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: unset;
}


/* end my css 06-01-2020 */


/* start my css 07-01-2020 */


/* Custom-input css */

.kz__chk-box {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.kz__chk-box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 13px;
    left: 0PX;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
}

.kz__note-content .checkmark {
    position: static;
}

.kz__chk-box:hover input~.checkmark {
    background-color: #ccc;
}

.kz__chk-box input:checked~.checkmark {
    background-color: #fc3355;
    border-color: #fc3355;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.kz__chk-box input:checked~.checkmark:after {
    display: block;
}

.kz__chk-box .checkmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* end custom input css */


/* start custom radio-button css */

.kz__radio-btn {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.kz__radio-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.kz__radio-btn .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

.kz__radio-btn:hover input~.checkmark {
    background-color: #ccc;
}

.kz__radio-btn input:checked~.checkmark {
    background-color: #fc3355;
    border-color: #fc3355;
}

.kz__radio-btn .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.kz__radio-btn input:checked~.checkmark:after {
    display: block;
}

.kz__radio-btn .checkmark:after {
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}


/* end custom radio-button css*/

.kz__table .input-group:hover,
.kz__table input:hover,
.kz__table .input-group {
    border: 0 !important;
}

.kz__table .input-group-addon {
    border-bottom: 0 !important;
    position: relative;
    top: -1px;
}

input[readonly],input:disabled,select[readonly],select:disabled
textarea[readonly],textarea:disabled,
.form-group.disabled,.form-group[readonly],.form-control[disabled], .form-control[readonly]{
    opacity: 0.4 !important;
}
input[readonly]:hover,
input:disabled:hover,
select[readonly]:hover{
    border: 1px solid #353e57 !important;
}
input[readonly]+span, input:disabled+span, select[readonly]+span  {
    opacity: 0.3 !important;
}
.kz__border-remove input[readonly], .kz__border-remove input:disabled, .kz__border-remove select[readonly] {
    border-right: 0 !important;
    border-radius: 5px 0px 0 5px !important;
}
.kz__table input.detail-time:disabled {
    margin-left: 5px !important;
}
/* end my css 08-01-2020 */


/* start my css 09-01-2020 */

.kz__table .form-control {
    padding: 0px;
}

.page-content.kz_spce_bottom {
    padding: 150px 0;
}

.kz__list-quote .dataTables_wrapper .table tbody tr td:last-child a:first-child {
    margin-right: 5px;
}


/* End my css 09-01-2020 */
/* start my css 11-01-2020*/
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid rgb(0 0 0 / 27%);
    outline-color: rgb(0 0 0 / 27%);
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus{
    border-color: #3b59d9;
}
.select2-container--default .select2-search--dropdown .select2-search__field:hover{
    border-color:#777777; 
}
.kz__timer-formwrap .form-group {
    margin-bottom: 0;
}
.kz__inner-input{
    display:inline-block;
}
/* end my css 11-01-2020*/
/* start my css 15-01-2021 */
.kz__time-inner input {
    border: 0 !important;
    box-shadow: unset !important;
}
.kz__time-inner.kz__time-select-inr .input-group {
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    height: 35px !important;
    border-radius: 5px !important;
    border: 1px solid #cccccc;
}
.kz__time-inner.kz__time-select-inr span.input-group-addon {
    border-bottom: 0;
}
/* end my css 15-01-2021 */
/* start my css 30-01-2021 */
#mail_template {
    float: right;
    width: 250px !important;
    background-color: #f2f2f2 !important;
    text-align: right;
    padding: 3px 10px !important;
    border-radius: 5px !important;
    color: #333;
    border: 1px solid #000000 !important;
}
.kz_custom_length .kz__tasklist-block.right{
    justify-content: flex-end;
}
.kz_custom_length .kz__task-select.custom-length label {
    width: 100% !important;
    display: flex;
    align-items: center;
}
.kz_custom_length .kz__task-select.custom-length label select {
    margin: 0 10px;
}
.kz_custom_length .kz__task-inner {
    align-items: center;
}
.kz_three_column .kz__tasklist-block.left {
    min-width: 50%;
    flex: 0 0 50%;
    display: flex;
}
.kz__tasklist-blockwrap.kz_three_column .kz__tasklist-block.right{
    min-width: 50%;
    flex: 0 0 50%;
}
.kz__tasklist-blockwrap.kz_three_column .kz__task-selectinner {
    min-width: 40%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
}
/* end my css 30-01-2021 */
/* start my css 01-02-2021 */

/* end my css 01-02-2021 */
@media (max-width:1280px) {
    .page-content.kz_spce_bottom {
        padding: 170px 0;
    }
}

@media (max-width:1200px) {
    .table-responsive.kz__table input,
    .kz__table select.form-control {
        width: 140px;
    }
    .kz__footerdetails-wrap .kz__details-middle.kz__details {
        min-width: 30%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
        padding-right: 15px;
    }
    .kz__footerdetails-wrap .kz__details-second.kz__details {
        min-width: 35%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
        flex: 0 0 35%;
    }
    .kz__footerdetails-wrap .kz__details-first.kz__details {
        min-width: 35%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
        flex: 0 0 35%;
    }
}

@media (max-width:991px) {
    .kz__tasklist-blockwrap.kz_three_column .kz__task-selectinner {
        min-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .kz_three_column .kz__tasklist-block.left {
        flex-wrap: wrap;
    }
    .kz__tasklist-blockwrap .kz__task-selectinner:nth-child(2) {
        margin: 0;
    }
    .kz__dashboard-wrap .col-sm-4 {
        width: 100%;
        margin-bottom: 15px;
    }
    .kz__tasklist-blockwrap .kz__task-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .kz__tasklist-blockwrap .kz__tasklist-block.left,
    .kz__tasklist-blockwrap .kz__tasklist-block.right,
    .kz__tasklist-blockwrap.kz__company__wrap .kz__tasklist-block.left, 
    .kz__tasklist-blockwrap.kz__company__wrap .kz__tasklist-block.right{
        min-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin: 5px 0;
    }
    .kz__tasklist-blockwrap.kz__company__wrap .kz__task-selectinner input#tbl-search {
        width: 100%;
    }
    .kz__mail-sectionwrap {
        margin-right: 0;
        border-top: 2px solid #ddd;
    }
    .kz__note-content {
        max-width: 100%;
        margin: 25px 0px 0;
    }
    .kz__quote-headwrap .form-group.kz__btn-group {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .kz__quote-headwrap .kz__title-right {
        margin: 0 10px 10px 0;
    }
    .kz__footerdetails-wrap .kz__details-second.kz__details,
    .kz__footerdetails-wrap .kz__details-middle.kz__details,
    .kz__footerdetails-wrap .kz__details-first.kz__details {
        min-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .kz__footerdetails-wrap .kz__details-middle.kz__details {
        padding-left: 15px;
    }
    .kz__footerdetails-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .kz__details-second.kz__details {
        margin: 10px 0 0;
        border-top: 1px solid #ddd;
        padding: 10px 0 0;
    }
    .kz__details-second.kz__details .first {
        border-left: 0;
    }
    .kz__quote-headwrap .row .col-md-6 {
        width: 100%;
    }
    .kz__quote-headwrap .row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .kz__quote-headwrap .form-group.kz__btn-group {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .kz__quote-headwrap h2,
    .kz__quote-tabtitle {
        text-align: center;
    }
}

@media (max-width:767px) {
    .kz__reminder-timerow .left {
        flex-wrap: wrap;
    }
    .kz__reminder-timerow .left .time,
    .kz__reminder-timerow .left .title,
    .kz__reminder-timerow .left .date {
        width: 100%;
    }
    .kz__reminder-timerow .time {
        padding: 5px 0;
    }
    .kz__riminder-dropdown .dropdown-menu {
        right: -37px;
        left: auto;
    }
    .kz__dash-search-list ul li a {
        flex-wrap: wrap;
    }
    .kz__dash-search-list ul li a span {
        width: 100%;
        padding-bottom: 5px;
    }
    .kz__tasklist-blockwrap .kz__tasklist-block.right {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .kz__tasklist-blockwrap .kz__task-selectinner {
        min-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .kz__tasklist-blockwrap .kz__task-selectinner:nth-child(2) {
        margin: 0;
    }
    .kz__quote-phnmail {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .kz__quote-phnmail .phone,
    .kz__quote-phnmail .mobile {
        min-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .kz__quote-phnmail .phone {
        margin: 0;
    }
    .form-horizontal.kz_user_form .form-group span {
        margin: 0 0px 10px 0;
        width: 100%;
        display: inline-block;
    }
    .page-content {
        padding: 140px 0;
    }
}

.kz__table table tr td {
    vertical-align: middle;
}

.note-panel .panel h4 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.note-panel .panel .panel-heading {
    padding-left: 0px;
}

.note-panel .panel .panel-heading small {
    color: #bcbcbc;
}

.note-panel {
    margin: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}


/*start css 09-12-2020*/

.kz_remove_arrow .select2-selection__arrow b:before {
    content: none !important;
}

.kz__task-block .kz__table th,
.kz__task-block .kz__table td {
    border-right: 1px solid #ddd;
}

.kz__task-block .kz__table th {
    border-bottom: 1px solid #ddd !important;
}

.kz__task-block table.dataTable.no-footer.kz__table {
    border-bottom: 1px solid #ddd !important;
    margin: 25px 0;
}

.kz__task-block .kz__table tr:nth-child(odd) {
    background-color: #fafafa;
}

.kz__task-block .kz__table thead tr {
    background-color: #fff !important;
}

.kz__task-block .kz__table td {
    font-size: 12px !important;
    padding: 30px 10px !important;
}

.kz__task-block .kz__table span.text-warning:hover,
.kz__task-block .kz__table span.text-danger:hover,
.kz__task-block .kz__table span.text-primary:hover,
.kz__task-block .kz__table span.text-success:hover {
    color: #fff;
}

.kz__task-block .kz__table span.text-warning,
.kz__task-block .kz__table span.text-primary,
.kz__task-block .kz__table span.text-danger,
.kz__task-block .kz__table span.text-success {
    border-radius: 100px;
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    margin: 5px 0 0;
    display: inline-block;
}

.kz__task-block .kz__table span.text-warning {
    background-color: #ffa700;
    font-size: 8px;
}

.kz__task-block .kz__table span.text-danger {
    background-color: #ff0039;
    font-size: 8px;
}

.kz__task-block .kz__table span.text-primary {
    background-color: #353e57;
    font-size: 8px;
}

.kz__task-block .kz__table span.text-success {
    background-color: #3fb618;
    font-size: 8px;
}

.kz__task-block .paginate_button.next {
    border: 1px solid #ccc;
    background: #353E57;
    color: #fff !important;
    opacity: 1;
    border-radius: 8px;
    border-color: #353e57 !important;
}

.kz__task-block .paging_simple_numbers .paginate_button.next {
    color: #fff !important;
}

.kz__task-block .dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid #ddd;
    border-radius: 8px;
}

.kz__task-block a.paginate_button {
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
}

.kz__task-block .paginate_button.next,
.kz__list-quote .paginate_button.next {
    margin-left: 7px !important;
}

.kz__task-block .paginate_button.previous,
.kz__list-quote .paginate_button.previous {
    margin-right: 7px !important;
}

.kz__task-block .kz__table th:last-child,
.kz__task-block .kz__table td:last-child {
    border-right: 0;
}

.kz__task-block .kz__table tr td:first-child {
    font-weight: bold;
}

.kz__task-block .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: left;
    margin: 15px 0 0;
}

.kz__task-block .dataTables_filter label,
.kz__task-block .dataTables_length label,
.kz__list-quote .dataTables_filter label,
.kz__list-quote .dataTables_length label {
    color: #777;
    font-weight: normal;
    width: 25%;
    font-size: 12px;
}

.kz__task-block .panel-heading {
    padding-bottom: 0;
}

.kz__task-select .select2-container--default .select2-selection--single {
    font-size: 12px;
}

.kz__task-select span.select2-container:before {
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #777;
    content: '';
    position: absolute;
    right: 10px;
    top: 20px;
    border-radius: 5px;
}

.kz__task-select span.select2-selection__arrow b:before {
    content: none !important;
}


/*list-quote page css start*/

.kz__custom-form table td,
.kz__list-quote table td {
    border-right: 1px solid #ddd;
    padding: 25px 10px !important;
}

.kz__custom-form table th:last-child,
.kz__custom-form table td:last-child,
.kz__list-quote table td:last-child {
    border-right: 0;
}

.kz__custom-form table tbody tr:nth-child(odd),
.kz__list-quote table tbody tr:nth-child(odd) {
    background-color: #fafafa;
}


/*list-quote page css end*/


/*end css 09-12-2020*/


/*start my css 10-12-2020 */

.kz__task-block .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #777;
}

button.kz__list-simplebtn {
    background-color: transparent;
    border: 0;
    padding: 0;
    color: #777;
    margin: 0 20px;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 18px;
}

.kz__list-btn img {
    max-width: 20px;
    margin-right: 7px;
    margin-top: -1px;
}

button.kz__list-simplebtn:hover,
button.kz__list-simplebtn:focus,
button.kz__list-simplebtn.active,
button.kz__list-simplebtn.focus {
    background-color: transparent !important;
    color: #dd3355 !important;
    outline: 0 !important;
    box-shadow: unset !important;
}

.kz__list-btn .kz__list-bgbtn {
    margin-left: 15px;
}

.kz__list-quote .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: left;
}

.kz__list-quote .dataTables_wrapper .dataTables_length {
    float: none;
    margin: 0 0 20px;
}

.kz__list-quote table.dataTable.no-footer {
    border-bottom: 1px solid #ddd;
    margin: 30px 0;
}

.kz__list-quote #matrix-tbl_wrapper table thead tr th {
    padding: 10px !important;
}

.badge {
    border-radius: 5px !important;
    font-weight: normal;
}

.kz__list-quote table td a {
    font-weight: 500;
}

.kz__list-quote .dataTables_wrapper .table tbody tr td:last-child a {
    color: #ffa700;
    font-size: 18px;
}

.kz__list-quote .dataTables_wrapper .paging_simple_numbers .paginate_button.disabled {
    background: #353E57 !important;
    color: #fff !important;
    opacity: 1;
    border-radius: 8px;
}
.kz__list-quote .dataTables_wrapper .paging_simple_numbers .paginate_button.current{
    background-color: #353e57 !important;
}
.kz__list-quote .dataTables_wrapper .paging_simple_numbers .paginate_button.current,
.kz__list-quote .dataTables_wrapper .dataTables_paginate .paginate_button {
    border-color: #e2e2e2;
    border-radius: 8px;
}

.kz__list-quote .dataTables_paginate .paginate_button.next,
.kz__list-quote .dataTables_paginate .paginate_button.previous {
    border: 1px solid #ccc;
    background: #353E57 !important;
    color: #fff !important;
    opacity: 1;
    border-radius: 8px;
    border-color: #353e57 !important;
}

img.kz_job_active {
    max-width: 20px;
    margin-right: 7px;
}

.kz__list-quote a.add_new_job {
    background-color: #353E57;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
}

.kz__list-quote a.add_new_job img {
    max-width: 11px;
}

.kz__list-bgbtn.kz__orange {
    background-color: #ffa700;
    border-color: #ffa700;
}

.kz__green {
    background-color: #3cbe41;
    border-color: #3cbe41;
}

.kz__list-bgbtn.kz__black {
    background-color: #353E57;
    border-color: #353E57;
}

.kz__list-quote .progress-bar {
    background-color: #353E57 !important;
}

.kz__list-quote .time-div {
    padding: 5px 0 0;
}

.kz__select .select2-container--default .select2-selection--single {
    border-radius: 8px 0 0px 8px;
}

.input-group{
    border: 1px solid transparent;
    border-radius: 8px;
}

.kz__quotetab-content .kz__border-remove input:hover,
.kz__quotetab-content .kz__border-remove input:focus,
.kz__quotetab-content .kz__select .select2-container--default .select2-selection--single:hover,
.kz__quotetab-content .kz__select .select2-container--default .select2-selection--single:focus,
.kz__mail-sectionwrap .kz__border-remove input:hover
 {
    border: 1px solid #cccccc;
}

.input-group:hover,
.kz__quotetab-content input:hover,
.kz__quotetab-content textarea:hover,
.kz__quotetab-content .select2-container--default .select2-selection--single:hover,
.kz__task-select .select2-container--default .select2-selection--single:hover,
.kz__mail-sectionwrap input:hover,
.kz__time-inner.kz__time-select-inr .input-group:hover {
    border: 1px solid #777777;
}

.input-group:focus,
.kz__quotetab-content input:focus,
.kz__quotetab-content textarea:focus,
.kz__quotetab-content .select2-container--default .select2-selection--single:focus,
.kz__task-select .select2-container--default .select2-selection--single:focus,
.kz__mail-sectionwrap input:focus,
.kz__time-inner.kz__time-select-inr .input-group:focus {
    border: 1px solid #3b59d9;
}

.kz__quote-headwrap .form-group {
    margin-bottom: 0 !important;
}

.kz__quotetab-content .input-group-addon img {
    max-width: 18px;
}

.kz__border-remove input#related_job {
    background-color: #fff;
}

.kz__custom-form.kz__list-quote.kz__th-width #matrix-tbl_wrapper table thead tr th:first-child {
    width: 70px !important;
}

.kz__custom-form.kz__list-quote.kz__th-width #matrix-tbl_wrapper table thead tr th:last-child {
    width: 20px !important;
}

.kz__custom-arrow {
    position: relative;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #ddd !important;
}

.kz__custom-arrow:before {
    width: 0px;
    height: 0px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #5f5f5f;
    content: '';
    position: absolute;
    right: 10px;
    top: 15px;
    border-radius: 5px;
    pointer-events: none;
    cursor: pointer
}

.kz__thmin-width .table tbody tr td:last-child,
.kz__thmin-width .table thead th:last-child {
    width: 125px !important;
}

.kz__thmin-width .table tbody tr td:first-child,
.kz__thmin-width .table thead th:first-child {
    width: 140px !important;
}

.kz__custom-table .kz__input-border input {
    border: 1px solid #ddd !important;
    padding: 0 10px;
}

.kz__matrix-create-table thead {
    background-color: #fff;
}

.kz__matrix-create-table th {
    border-top: 0 !important;
    padding: 15px 10px !important;
}


/* end my css 10-12-2020 */


/* start my css 18-12-2020 */

.kz__timer-block .modal-content {
    border-radius: 20px !important;
}

.kz__timer-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.kz__timer-block .kz__inner-wrap.middle {
    min-width: 3%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 3%;
    flex: 0 0 3%;
    margin: 0px 15px;
    height: 10px;
}

.kz__timer-block .kz__inner-wrap.first,
.kz__timer-block .kz__inner-wrap.last {
    min-width: 47%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 47%;
    flex: 0 0 47%;
}

.kz__timer-block label {
    width: 100%;
}

.kz__timer-block .kz__mail-sectionwrap {
    margin-right: 0;
}

.kz__inner-wrap.last {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.kz__timer-modal .vcenter.kz__timer-sec {
    width: 100%;
}

.kz__timer-modal .vcenter.kz__timer-sec {
    width: 50%;
}

.kz__timer-formwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.kz__timer-modal .control-label {
    font-size: 12px;
    line-height: 24px;
    color: #777;
    font-weight: 500;
    letter-spacing: 0.5px;
    width: 100%;
}

.kz__timer-modal .kz__custom-arrow select,
.kz__time-inner input {
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    height: 50px !important;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    padding: 0 15px;
}

.kz__timer-modal .kz__custom-arrow {
    border: 0 !important;
    width: 60% !important;
}

.kz__task-select-block {
    width: 100%;
    margin: 0 0 20px;
}

.kz__timer-modal .kz__custom-arrow:before {
    top: 23px;
}


/* end my css 18-12-2020 */


/* start my css 19-12-2020*/

.kz__timer-modal .form-group select,
.kz__timer-modal .form-group input,
.kz__timer-modal .input-group input {
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    height: 35px !important;
    border-radius: 5px !important;
}

.kz__timer-modal .modal-content {
    border-radius: 10px;
}

.kz__timer-formwrap .kz__timer-sec:first-child,
.kz__inner-wrap.last .kz__timer-sec:first-child {
    margin: 0 20px 0 0;
}

.kz__time-select-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.kz__timer-input input:checked~.kz__timer-input .checkmark:after {
    display: block;
}

.kz__timer-input .checkmark:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.kz__timer-input .checkmark {
    position: absolute;
    top: 1px;
    left: -30px;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    border-radius: 3px;
}

.kz__timer-input input:checked~.checkmark {
    background-color: #fc3355;
}

.kz__timer-input input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.kz__time-select-block label.kz__custom-input {
    position: relative;
    margin-bottom: 0;
    color: #777;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.kz__timer-btn {
    float: right;
}

.kz__timer-btn a {
    background-color: #fc3355;
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.2s ease-in-out;
}

.kz__timer-btn a:first-child {
    margin-right: 15px;
}

.kz__timer-btn a:last-child {
    background-color: #353e57;
}

.kz__timer-btn a:last-child:hover {
    background-color: #fc3355;
}

.kz__timer-btn a:hover {
    background-color: #353e57;
}

.kz__timer-modal .modal-body {
    position: relative;
    padding: 40px 50px !important;
}

.kz__timer-btn a:hover {
    text-decoration: none;
}

.kz__textarea-wrap {
    margin-top: 93px;
}

.kz__material-tab .kz__inner-wrap.last {
    max-width: 430px;
}

.kz__material-tab .kz__time-select-block {
    max-width: 550px;
}


/* end my css 19-12-2020*/


/* start my css 23-12-2020 */

.kz__list-quote table.kz__inputborder tbody select.form-control {
    height: 40px !important;
    background-color: transparent !important;
    border-bottom: 1px solid #ddd !important;
    padding: 0;
    border: 0;
    border-radius: 0;
    height: 35px;
}

.kz__list-quote table.kz__inputborder tbody select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
}
/* start css 02-08-2021 */
.kz__timer-modal .kz__time-select-block .kz__time-inner.kz__time-select-inr {
    min-width: 48%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    margin-right: 15px;
}
.kz__timer-modal .kz__inner-input.form-group {
    min-width: 48%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
    flex: 0 0 48%;
}
.kz__timer-modal .kz__inner-input.form-group input {
    height: 37px !important;
}

/* end my css 23-12-2020 */

@media (min-width: 768px) {
    .modal-lg.kz__timer-modal {
        width: 85%;
    }
}

@media (min-width:992px) {
    .modal-lg.kz__timer-modal {
        width: 85%;
    }
}

@media (max-width:1366px) {
    
}

@media (max-width:991px) {
    .kz__task-block .dataTables_filter label,
    .kz__task-block .dataTables_length label,
    .kz__list-quote .dataTables_filter label,
    .kz__list-quote .dataTables_length label {
        width: 35%;
    }
    .kz__custom-form .panel-heading {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    button.kz__list-simplebtn {
        margin: 0 20px 10px 0;
    }
    .kz__list-btn {
        width: 100%;
        margin: 15px 0 0;
    }
    .kz__task-block .dataTables_filter label,
    .kz__task-block .dataTables_length label,
    .kz__list-quote .dataTables_filter label,
    .kz__list-quote .dataTables_length label {
        width: 100%;
    }
}

@media (max-width:767px) {
    .kz__textarea-wrap {
        margin-top: 15px;
    }
    .kz__timer-modal .kz__time-select-block .kz__time-inner.kz__time-select-inr,
    .kz__timer-modal .kz__inner-input.form-group {
        min-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-right: 15px;
    }
    .kz__timer-modal .modal-body {
        position: relative;
        padding: 40px 15px !important;
    }
}


/* 7-1-21 start*/

.kz__table img {
    max-width: 14px;
    margin-right: 7px;
    margin-top: -1px;
}

.kz__noteinner-tab img {
    max-width: 20px !important;
    margin-right: 7px;
}


/* 7-1-21 end*/

/* 21-01-2021 - shreyash */

.progress .progress-bar.overdue-task {
    background-color: #fc3355;
}

.kz_complete_row {
    background-color: #eae8e8 !important;
}

/*  end */


/*01-02-2021 - jay*/
.kz__remove-background .tab-pane {
    background: transparent !important;
}

.kz__remove-background .panel.panel-default {
    border: 0 !important;
}

.kz__remove-background .notes_history {
    padding: 15px;
}

.kz__remove-background .note-panel {
    margin: 10px 0;
}

/*end*/

/*start 05-02-2021 - jay*/

.company__url {
    overflow-wrap: break-word;
}

/*end */

/* start my css 11-02-2021 */
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate .paginate_button{
    font-size: 12px;
}
.kz__table.kz-custom-arraow {
    padding: 0 25px 0 0;
}
/* end my css 11-02-2021 */
/* start my css 13-02-2021 */
.kz__align-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
}
.kz__table .kz-custom-arraow:before{
    top: 7px;
}
.kz__quote-wrap .kz__table table tr td.actions a,
.kz__quote-wrap td.kz_item_delete a{
    position: relative;
    top: 0px;
}
.table-responsive.kz__table .kz__chk-box .checkmark{
    left: -4PX;
    top: -1px;
} 
.kz__quote-wrap .kz_item_delete a > i {
    font-size: 20px;
} 
/* End my css 13-02-2021 */
/* start my css 18-02-2021 notifications */
.kz__notifications .kz__notifications-wrap {
    position: absolute;
    background-color: #f8f8f8;
    width: 500px;
    right: 0;
    left: auto;
    box-shadow: 0 0 8px rgb(0 0 0 / 9%);
    border-radius: 10px;
    top:100%;
    display: none;
}
.kz__notifications.open .kz__notifications-wrap{
    display: block;
}
.kz__notifications-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0px;
    border-bottom: 1px solid #ddd;
}
.kz__mark-points {
    text-align: center;
    padding: 0px 20px 15px;
    font-weight: bold;
    color: #777777;
}
.kz__notifications-inner {
    padding: 5px 20px 15px;
}
.kz__notifications-maintitle {
    background-color: #ff004f;
    border-radius: 10px;
    padding: 0 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
li.kz__notifications {
    position: relative;
}
.kz__notifications-maintitle .title h3 {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 2;
}
.kz__notifications-item .title_wrap span {
    color: #ff004f;
    font-size: 16px;
    font-weight: bold;
}
.kz__notifications-item .title_wrap {
    padding-bottom: 12px;
}
.kz__notifications-inner .kz__notifications-item .right span {
    color: #999999;
    vertical-align: middle;
    margin: 0 5px;
}
.kz__notifications-inner .icon {
    background-size: 18px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
}
.watch_icon {
    background-image: url(../images/clock.svg);
}
.bar-icon{
    background-image: url(../images/more.svg);
}
.kz__notifications-item .left, 
.kz__notifications-item .right {
    max-width: 50%;
    flex: 0 0 50%;
}
.kz__notifications-item .right {
    display: flex;
    justify-content: space-between;
}
.kz__notifications-close span.close-icon {
    color: #ff004f !important;
}
/* end my css 18-02-2021 notifications */

/* 11-03-2021 Start */
.company-body.kb__company__body__edit .content-tabs {
    display: flex;
    align-items: self-start;
    background-color: #e6e6e6;
    flex-wrap: wrap;
    border-bottom: 1px solid #dddddd;
}
.company-body.kb__company__body__edit ul li {
    display: inline-block;
    width: auto;
}
.company-body.kb__company__body__edit ul li a {
    text-transform: capitalize !important;
    font-size: 16px;
}
.company-body.kb__company__body__edit .tab-content {
    padding: 20px;
}
.company-body.kb__company__body__edit .tab-content h3 {
    padding: 0 !important;
    margin-bottom: 30px;
}
.company-body.kb__company__body__edit .tab-content .dataTables_length label select {
    margin: 0 10px;
    padding: 5px 10px;
    border: 1px solid #908d8d;
    border-radius: 5px;
}
/* 11-03-2021 End */

/* 12-03-2021 Start */
.inner-wrap.kb__job__overview {
    margin-top: 50px;
}
.inner-wrap.kb__job__overview .tab-content .body-panel {
    background-color: #ffffff;
    padding: 20px;
}
.inner-wrap.kb__job__overview .tab-content .body-panel .paneltab ul {
    padding: 10px 0;
    margin-bottom: 30px;
}
.inner-wrap.kb__job__overview .tab-content .body-panel .tab-content .body-panel {
    padding: 0;
}
.inner-wrap.kb__job__overview .tab-content .body-panel .tab-content .body-panel .paneltabcontent {
    margin-top: 30px;
}

@media (max-width: 1280px) {
    .kz__quote-headwrap h2, .kz__quote-tabtitle {
        font-size: 18px;
        line-height: 1.4;
    }
    .kz__quote-headwrap .kz__title-right {
        margin: 0 2px 0 0;
    }
    .kz__quote-headwrap .kz__title-right:last-child {
        margin-right: 0;
    }
    .kz__quote-headwrap .kz__title-right .kz__list-bgbtn {
        margin-left: 5px;
    }
    .kz__quote-headwrap .col-md-6:first-child {
        width: 40%;
    }
    .kz__quote-headwrap .col-md-6:last-child {
        width: 60%;
    }
}
@media (max-width: 991px) {
    .inner-wrap.kb__job__overview .panel-head ul li a { text-transform: capitalize; }
    .inner-wrap.kb__job__overview .left-sidemenu .col-sm-6,
    .inner-wrap.kb__job__overview .right-side .col-md-4,
    .inner-wrap.kb__job__overview .right-side .col-md-8,
    .inner-wrap.kb__job__overview .right-side .col-sm-8 {
        width: 100%;
        padding-bottom: 15px;
    }
    .inner-wrap.kb__job__overview .left-sidemenu select {
        width: 100%;
        margin-bottom: 15px;
    }
    .service-listing { position: static; }

    .kz__quote-headwrap .col-md-6:first-child,
    .kz__quote-headwrap .col-md-6:last-child {
        width: 100%;
    }
    .kz__quote-headwrap .form-group.kz__btn-group {
        margin-top: 15px;
    }
}
/* 12-03-2021 End */

/* 17-03-2021 Start */
#quoteDetail .table-responsive.kz__table table {
    border: 1px solid #e87a90;
}
#quoteDetail .table-responsive.kz__table table tr th, 
#quoteDetail .table-responsive.kz__table table tr td,
#quoteDetail .table-responsive.kz__table table tfoot tr {
    border-color: #e87a90;
}
#quoteDetail .table-responsive.kz__table table tr th, 
#quoteDetail .table-responsive.kz__table table tr:nth-child(even) td {
    background-color: #e4e4e4;
}
#quoteDetail .table-responsive.kz__table table tr label.kz__chk-box {
    display: inline-block;
}

.table-responsive.kz__table.job_details_table .input-group.date.kz__border-remove {
    width: 100%;
}
.table-responsive.kz__table.job_details_table .input-group.date.kz__border-remove input.form-control.detail-date {
    border: 1px solid #353e57 !important;
    border-radius: 5px !important;
    margin-left: 0;
}
.kz__timer-block .kz__inner-wrap .input-group:focus,
.kz__timer-block .kz__inner-wrap .input-group:hover {
    border: 1px solid transparent;
}
.kz__quote-wrap .kz__table.job_details_table table tr td .kz__time {
    display: flex;
    align-items: center;
}
.kz__quote-wrap .kz__table.job_details_table table tr td .kz__time .fa.fa-clock-o {
    font-size: 16px;
    color: #777777;
}
.kz__quote-wrap .kz__table.job_details_table table tr td .kz__time .detail-time {
    margin-left: 7px;
    border: 1px solid #353e57 !important;
    color: #333333;
}
/* 17-03-2021 End */

.job_delivery_address .form-group {
    display: flex;
    margin: 8px 0 0;
}

/* start my css 16-04-2021 */
.kz_job_filters .kz__task-select.kz__task-selectinner {
    min-width: 19%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 19%;
    margin: 0 5px;
}
/* start my css 26-04-2021 */
.kz_invoice_quote thead  tr th:last-child {
    position: relative;
}
.kz_invoice_quote thead  tr th:last-child .kz__chk-box,
.kz_invoice_quote tbody.quote-tr tr td:last-child .kz__chk-box  {
    left: 0;
    position: relative;
}
.kz_invoice_quote .table-responsive.kz__table .kz__chk-box .checkmark{
    left: -9px;
}
.kz_invoice_quote thead  tr th:last-child .kz__chk-box .checkmark{
    top: -8px !important; 
}
/* end my css 26-04-2021 */
@media (max-width:991px){
    .kz_job_filters .kz__task-select.kz__task-selectinner {
        min-width: 48%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
        margin: 0 5px;
    }
}
@media (max-width:767px){
    .kz_job_filters .kz__task-select.kz__task-selectinner {
        min-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin: 0 5px;
    }
}
/* end my css 16-04-2021 */

/* start my notifications css 09-04-2021*/
.kz__notifications-wrap {
    background-color: #f8f8f8;
    width: 562px;
    border: 1px solid #dddddd;
    border-radius: 10px;
}
.kz__ntitle-wrap {
    background-color: #fc3355;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 25px;
    position: sticky;
    width: 100%;
    top: 0;
}
.kz_n-flex {
    display: flex;
    justify-content: space-between;
    padding: 5px 25px;
}
.kz__notification-time-desc {
    display: flex;
    justify-content: space-between;
}
.kz__notification-time-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.kz__notification-time-desc p, .kz__notification-time-desc i {
    margin: 0 5px;
    color: #777777;
    font-size: 20px !important;
}
.kz__notifications-wrap p.block-title,
.kz__notifications-wrap .block-second-title {
    color: #fc3355;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
}
.kz__notifications-wrap .details p, .kz__notifications-wrap .details a {
    color: #333333;
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}
.kz__notifications-dropdown{
    padding:0px  !important;
}
.kz__notifications-block {
    padding: 15px 25px;
}
.kz__notifications-block.kz_n-flex.second {
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}
.kz__ntitle-wrap h3 {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 20px;
}
.kz__notification-btn {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #dddddd;
}
.kz__notification-btn a {
    font-size: 16px !important;
    text-transform: capitalize;
}
.kz__notification-time-desc i.fa.fa-times {
    color: #fc3355;
}
/* end my notifications css 09-04-2021*/

/*start 10-04-2021 */
.notification-badge {
  position: absolute;
  top: 10px;
  right: 1px;
  padding: 3px 9px;
  border-radius: 50%;
  background: red;
  color: white;
}
/*end */

.kz_report .kz__tasklist-blockwrap.kz_three_column.kz_job_filters .kz__task-selectinner {
    min-width: 29%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 29%;
}

.kz_report .kz__tasklist-blockwrap.kz_three_column.kz_job_filters .kz__task-selectinner:last-child {
    min-width: 10%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    float: right;
    text-align: right;
}
.kz__tasklist-blockwrap.kz_job_filters .kz__task-selectinner:nth-child(2) {
    margin: 0;
}
.kz__tasklist-blockwrap.kz_three_column.kz_job_filters .kz__task-selectinner .form-group {
    margin: 0 5px;
}
/* start my css 13-05-2021 */
.kz__dash-total-details img {
    max-width: 30px;
}
.kz__dash-total-details .panel.panel-default {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 30px;
    border: 0;
    box-shadow: 0 0 8px rgb(0 0 0 / 20%);
    background-color: #ffffff;
    border-radius: 5px;
}
.kz__dash-total-img {
    background-color: #ffffff;
    box-shadow: 0 0 8px rgb(0 0 0 / 20%);
    padding: 10px;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    line-height: 40px;
    text-align: center;
}
.kz__dash-total-desc {
    max-width: calc(100% - 70px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 70px);
            flex: 0 0 calc(100% - 70px);
    padding-left: 10px;
}
.kz__dash-total-desc .panel-heading {
    padding: 0px 15px;
}
.kz__dash-total-desc .panel-heading span {
    font-size: 25px;
}
.kz__dash-total-details .panel-body {
    padding: 0px 15px 0px;
}
.kz__dash-title {
    color: #dd3355;
    font-size: 30px;
}
.kz__dash-total-details {
    margin-bottom: 25px;
}
.kz__dash-title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            padding-bottom: 15px;
}
.kz__dash-title-wrap select.timeframe {
    width: 260px;
    padding: 10px 0px;
    border-bottom: 1px solid #000000 !important;
    border: 0;
}
@media (max-width:1199px){
    .kz__dash-total-details .panel.panel-default{
        padding: 15px;
    }
    .kz__dash-total-img{
        width:60px;
        height: 60px;
    }
    .kz__dash-total-desc{
        padding-left:0px;
    }
    .kz__dash-total-desc .panel-heading span {
        font-size: 18px;
    }
    .kz__dash-total-details .panel-body{
        font-size: 12px;
    }
}
@media (max-width:768px){
    .kz__dash-title-wrap {
        flex-wrap: wrap;
    }
    .kz__dash-title-wrap select.timeframe {
        width: 100%;
        margin-top: 15px;
    }
}

/*start notification css 14-05-2021*/
.kz_n-flex6 {
    max-width: 50%;
    flex: 0 0 50%;
}
.kz__notification-time-desc label{
      margin-bottom: 0;
}
.kz__notifications-wrap .details p{
    max-width: 90%;
}
/*end*/

.kz_contact_report th:nth-child(3),
.kz_contact_report th:first-child {
    width: 25% !important;
}

.kz_contact_report th:nth-child(2) {
    width: 50% !important;
}
/* start my css 03-08-2021 */
.kz__timer-modal .btn.btn-primary {
    background-color: #3cbe41;
    border-color: #3cbe41;
}
.kz__timer-modal .btn.btn-primary:hover{
    background-color: #f9748a;
    border-color: #f9748a;
}
a.dt-button.buttons-csv.buttons-html5,
a.dt-button.buttons-pdf.buttons-html5 {
    background-color: #353E57;
    border-color: #353E57;
    border-radius: 5px;
    color: #ffffff;
    background-image: unset;
}
a.dt-button.buttons-csv.buttons-html5:hover,
a.dt-button.buttons-pdf.buttons-html5:hover{
    background-color: #ffa700;
    border-color: #ffa700;
}
.kz_report_custom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.kz_report_custom .custom-length label {
    width: 100%;
}

.dashboard_wrapper .kz__dash-block span.kz_reminder_filter:nth-child(2) {
    display: inline-block;
    padding: 0 15px;
}
/* end my css 03-08-2021 */