/* #region Common */

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.overflow-hidden {
    overflow: hidden;
}

.bold {
    font-weight: bold;
}

.display-inline-block {
    display: inline-block;
}

.text-left {
    text-align: left !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.no-border {
    border: none !important;
}

.no-border-right {
    border-right: none !important;
}

.no-border-left {
    border-left: none !important;
}

.no-border-top {
    border-top: none !important;
}

.no-border-bottom {
    border-bottom: none !important;
}

.validate-error-text {
    display: block;
    margin-top: 6px;
    padding: 0 1px;
    font-size: 11px;
    color: #D56161;
}

.form-group label {
    font-weight: bold !important;
}

.no-resize {
    resize: none;
}

.text-single-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.display-b
/* #endregion */


/* #region Toastr */

#toast-container>div {
    padding: 0 !important;
}

#toast-container-new {
    text-align: center;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    width: 50%;
    margin: 0 auto;
}

#toast-container-new .toast {
    padding: 5px 15px;
    display: inline-block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-weight: 600;
    max-width: 350px;
}


/* #endregion */


/* #region Modal left and right Animation */

.modal-open {
    position: fixed;
    width: 100%;
}

.modal.left .modal-dialog,
.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 99%;
    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%;
}

.modal.left .modal-body,
.modal.right .modal-body {
    padding: 0;
    overflow-y: auto;
    height: calc(100vh - 110px);
    height: -webkit-calc(100vh - 110px);
    height: -ms-calc(100vh - 110px);
    height: -moz-calc(100vh - 110px);
}

.modal.left .modal-body.without-footer,
.modal.right .modal-body.without-footer {
    padding: 0;
    overflow-y: auto;
    height: calc(100vh - 65px);
    height: -webkit-calc(100vh - 65px);
    height: -ms-calc(100vh - 65px);
    height: -moz-calc(100vh - 65px);
}

.modal.left .modal-body.without-header-footer,
.modal.right .modal-body.without-header-footer {
    padding: 0;
    overflow-y: auto;
    height: 100%;
}

.modal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 15;
}


/* Modal 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;
}


/* Modal 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;
}


/* #endregion */


/*#region Internet Connection Chack */

.internet-connection-check-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
}

.internet-connection-check-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50%;
    height: 50px;
}

.internet-connection-check-container>div {
    background-color: #f8ecad;
    color: #7c6d1f;
    font-weight: bold;
    font-size: 14px;
    padding: 15px;
    padding-right: 4em;
}

.internet-connection-check-container .fa-refresh {
    font-size: 18px;
    position: absolute;
    top: 15px;
    right: 10px;
}


/* #endregion */


/* #region UI Grid */

.grid-cell-icon {
    cursor: pointer;
    padding: 0 5px;
    color: #d71921;
}

.grid-on-icon {
    color: #A9A9A9;
    margin-left: 51px;
}

.grid-cell-link {
    padding: 0 5px;
}


/* #endregion */


/* #region Autocomplete */

.auto-complete-loading {
    position: absolute;
    left: 0;
    bottom: -17px;
    font-size: 15px;
}

.auto-complete-norecords {
    position: absolute;
    left: 0;
    font-size: 11px;
    padding-top: 30px;
    padding-left: 8px;
}


/* #endregion */


/* #region Error & Warning Popover */

.error-warning-container {
    position: absolute;
    right: 15px;
    z-index: 4;
}

button.popover-error {
    border: none;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
}

.popover-error {
    color: #ED4337;
}

button.popover-warning {
    border: none;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
}

.popover-warning {
    color: #FFAD33;
}

.popover.popover-error {
    background: #FFCCAA;
    border: 1px solid #ED4337;
    color: #000;
}

.popover.popover-error.top .arrow {
    border-top-color: #ED4337 !important;
}

.popover.popover-error.top .arrow::after {
    border-top-color: #FFCCAA !important;
}

.popover.popover-error.bottom .arrow {
    border-bottom-color: #ED4337 !important;
}

.popover.popover-error.bottom .arrow::after {
    border-bottom-color: #FFCCAA !important;
}

.popover.popover-error.left .arrow {
    border-left-color: #ED4337 !important;
}

.popover.popover-error.left .arrow::after {
    border-left-color: #FFCCAA !important;
}

.popover.popover-error.right .arrow {
    border-right-color: #ED4337 !important;
}

.popover.popover-error.right .arrow::after {
    border-right-color: #FFCCAA !important;
}

.popover.popover-warning {
    background: #FFFFAA;
    border: 1px solid #FFAD33;
    color: #000;
}

.popover.popover-warning.top .arrow {
    border-top-color: #FFAD33 !important;
}

.popover.popover-warning.top .arrow::after {
    border-top-color: #FFFFAA !important;
}

.popover.popover-warning.bottom .arrow {
    border-bottom-color: #FFAD33 !important;
}

.popover.popover-warning.bottom .arrow::after {
    border-bottom-color: #FFFFAA !important;
}

.popover.popover-warning.left .arrow {
    border-left-color: #FFAD33 !important;
}

.popover.popover-warning.left .arrow::after {
    border-left-color: #FFFFAA !important;
}

.popover.popover-warning.right .arrow {
    border-right-color: #FFAD33 !important;
}

.popover.popover-warning.right .arrow::after {
    border-right-color: #FFFFAA !important;
}

.error-warning-container-common .custom-warning-container,
.error-warning-container-common .custom-error-container {
    position: relative;
}

.error-warning-container-common .custom-warning-container .btn-warning {
    border: none;
    background-color: transparent !important;
    padding: 0;
    cursor: pointer;
    color: #FFAD33;
}

.error-warning-container-common .custom-error-container .btn-error {
    border: none;
    background-color: transparent !important;
    padding: 0;
    cursor: pointer;
    color: #ED4337;
}

.error-warning-container-common .custom-warning-count,
.error-warning-container-common .custom-error-count {
    position: relative;
    top: -10px;
    left: 0;
    font-size: 10px;
    font-weight: 600;
}

.error-warning-container-common .custom-warning-count {
    color: #FFAD33;
}

.error-warning-container-common .custom-error-count {
    color: #ED4337;
}

.error-warning-container.right {
    position: fixed;
    border: 1px solid #bbb;
    width: 350px;
    top: 50px;
    right: -360px;
    background-color: #fff;
    z-index: 999;
    -webkit-transition: 250ms cubic-bezier(0.1, .57, .1, 1);
    -moz-transition: 250ms cubic-bezier(0.1, .57, .1, 1);
    -ms-transition: 250ms cubic-bezier(0.1, .57, .1, 1);
    -o-transition: 250ms cubic-bezier(0.1, .57, .1, 1);
    transition: 250ms cubic-bezier(0.1, .57, .1, 1);
}

.error-warning-container.right.open {
    right: -1px;
}

.error-warning-container .error-warning-header {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.error-warning-container .error-warning-header .title {
    font-size: 16px;
    font-weight: 600;
}

.error-warning-container .error-warning-header .error-warning-toggle-icon {
    font-size: 16px;
    cursor: pointer;
}

.error-warning-container .error-warning-body {
    width: 100%;
    height: calc(100vh - 200px);
    padding: 10px;
    overflow-y: auto;
}

.error-warning-container .error-warning-body .error-warnig-list {
    border-bottom: 1px solid #eee;
}

.error-warning-container .error-warning-body .error-warnig-list .message {
    font-weight: 600;
}

.error-warning-container .error-warning-body .error-warnig-list .meta-object {
    color: #aaa;
}


/* #endregion */


/* #region Dropdown */

[uib-typeahead-popup].dropdown-menu {
    z-index: 2000;
    max-height: 250px;
    overflow-y: auto;
}

[uib-typeahead-popup].dropdown-menu li a {
    text-overflow: ellipsis;
    overflow: hidden;
}


/* #endregion */


/* #region Default Border */

.border-top {
    border-top: 1px solid #f5f5f5 !important;
}

.border-bottom {
    border-bottom: 1px solid #f5f5f5 !important;
}

.border-left {
    border-left: 1px solid #f5f5f5 !important;
}

.border-right {
    border-right: 1px solid #f5f5f5 !important;
}

.border-bottom-medium {
    border-bottom: 1px solid #ddd !important;
}


/* #endregion */


/* #region Standard Menu */


/* #region Standard menu footer */

.eaxis-footer-strip {
    width: 100%;
    /* height: 40px; */
    background-color: #f0f0f0;
    position: fixed;
    bottom: 20px;
    left: 0;
    z-index: 999;
    border-top: 1px solid #aaa;
}

.standard-menu-wrapper {
    padding: 0 20px;
}

.eaxis-footer-left {
    overflow: hidden;
    position: relative;
    margin: 0;
}

.eaxis-footer-left ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.eaxis-footer-left li {
    list-style: none;
    text-align: center;
    padding-right: 30px;
    display: inline-block;
    position: relative;
}

.eaxis-footer-left li div {
    cursor: pointer;
}

.eaxis-footer-left li:hover,
.eaxis-footer-left li:hover .eaxis-footer-icon,
.lidivider:hover,
.lidivider:hover .eaxis-footer-icon {
    color: #d71921;
}

.eaxis-footer-left li::after,
.eaxis-footer-left li::before,
.lidivider::after,
.lidivider::before {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 15px;
    bottom: 0;
    margin: auto;
}

.eaxis-footer-left li::after,
.lidivider::after {
    right: 15px;
    background: #ccc;
}

.eaxis-footer-left li::before,
.lidivider::before {
    right: 14px;
    background: #fff;
}

.eaxis-footer-text {
    font-size: 10px;
}

.pl-pr {
    padding: 0 18px;
}

.eaxis-footer-icon {
    font-size: 16px;
    color: #67696f;
}

.eaxis-footer-left li .eaxis-hints {
    float: left;
    padding: 11px 10px;
    border-left: 1px solid #ccc;
    color: #999;
}

.shortcut-action-list {
    float: right;
}

.flex-desplay {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.height-45 {
    height: 45px;
}


/* #endregion */

.sm-count {
    position: absolute;
    top: -5px;
    right: 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #c3c3c3;
    color: #d71921;
    border-radius: 50%;
    font-size: 10px;
    text-align: center;
    line-height: 1.3;
    background: #fff;
}

.arrow-hide {
    display: none;
}

.arrow-show {
    display: flex;
}


/* #region */

.sm-section-top {
    border-bottom: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sm-section-body .heading {
    border-bottom: 1px solid #bbb;
}

.sm-section-body .list-wrapper .list {
    border-bottom: 1px solid #eee;
}

.sm-section-body .list-wrapper .list:hover {
    background-color: #f7f7f7;
}

.sm-section-body .list-wrapper.sm-comment-list-wrapper,
.sm-section-body .list-wrapper.sm-exception-list-wrapper,
.sm-section-body .list-wrapper.sm-email-list-wrapper,
.sm-section-body .list-wrapper.sm-parties-list-wrapper {
    height: calc(100vh - 200px);
    overflow-y: auto;
}

.sm-section-body.sm-keyword-list-wrapper,
.sm-section-body .list-wrapper.sm-checklist-list-wrapper,
.sm-section-body .list-wrapper.sm-delay-reason-list-wrapper,
.sm-email-container .edit-view .sm-email-edit-body {
    height: calc(100vh - 162px);
    overflow-y: auto;
}

.attachment-wrapper .attachment-container .attachment-list {
    border: 1px solid #eee;
    max-width: 225px;
}

.attachment-wrapper .attachment-container .attachment-list:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Comment */

.sm-section-body .list-wrapper .list .comments {
    white-space: pre-wrap;
}


/* Exception */

.dynamic-control-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 100;
}

.more-items-line-middle {
    width: 100%;
    border-bottom: 1px solid #eee;
    position: absolute;
    top: 11px;
    left: 0;
}

.btn-more-items {
    padding: 2px 5px;
    font-size: 11px;
}

.upload-loading-section {
    background-color: #f7f7f7;
}

.upload-loading-section .file-name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    float: left;
}

.upload-loading-section .file-name.email-attach {
    max-width: 170px;
}

.upload-loading-section .loading-file-name {
    position: relative;
    float: left;
    text-align: center;
}

.upload-loading-section .loading-file-name span {
    padding: 0 7px;
    font-weight: 600;
    float: right;
}


/* Document */

.doc-download-count,
.doc-amend-count {
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    font-size: 11px;
    line-height: 20px;
    background-color: rgb(112, 172, 226);
    color: rgb(255, 255, 255);
    /* padding: 3px 0px 0px; */
    /* border-radius: 100%; */
}

.edit-document-name {
    position: absolute;
    top: 2px;
    /* right: 20px; */
}

.edit-document-name .dropdown-menu {
    width: 300px;
}

.sm-section-body .list-wrapper.sm-document-list-wrapper {
    height: calc(100vh - 247px);
    overflow-y: auto;
}


/* Keyword */

.sm-section-body.sm-keyword-list-wrapper .keyword {
    border: 1px solid #ddd;
}


/* Email Template creation */

.email-template-creation-container .note-editor.note-frame .note-editing-area .note-editable {
    height: calc(100vh - 200px);
}


/* Email Template creation */

.email-edit-container .note-editor.note-frame .note-editing-area .note-editable {
    height: calc(100vh - 300px);
}


/* #endregion */


/* #endregion */


/* #region Upload Loading bar */

.meter-wrapper {
    width: 200px;
    float: right;
}

.meter {
    width: 200px;
    float: right;
}

.meter-with-value,
.meter {
    height: 10px;
    position: relative;
    top: 6px;
    text-align: center;
    background: #555;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    -webkit-box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
    -moz-box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
}

.meter>span,
.meter-with-value>span {
    display: block;
    height: 100%;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.3;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomright: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgb(119, 123, 255)), color-stop(1, rgb(158, 179, 255)));
    -webkit-box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.meter-wrapper .meter-with-value>span {
    width: 0;
}

.meter>span:after,
.meter-with-value>span:after,
.animate>span>span {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent), to(transparent));
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    z-index: 1;
    background-size: 50px 50px;
    -webkit-background-size: 50px 50px;
    -moz-background-size: 50px 50px;
    animation: move 2s linear infinite;
    -webkit-animation: move 2s linear infinite;
    -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    -moz-border-radius-bottomright: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}

.animate>span:after {
    display: none;
}

@keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@-webkit-keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}


/* #endregion */


/* #region Summernote */

.note-editor.note-frame .modal .modal-dialog {
    width: 40% !important;
    height: auto !important;
    position: relative !important;
    margin: 45px auto !important;
}

.note-editor.note-frame .modal .modal-dialog .modal-content {
    height: auto !important;
}

.note-editor.note-frame .modal .modal-dialog .modal-content .modal-body {
    height: auto;
    padding: 15px;
    margin: 0 15px;
}

.note-editor.note-frame .modal .modal-dialog .modal-content .modal-footer {
    position: relative;
}

.note-editor.note-frame .modal .modal-dialog .modal-content .modal-body .form-control.note-image-input {
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.42857143;
    height: 34px;
}

.note-editor.note-frame {
    border: 1px solid #d5d5d5 !important;
}


/* #endregion */


/* #region Attachment document */

.attachment-container-list-view .attachment-list {
    border: 1px solid #ddd;
    float: left;
    width: 180px;
    height: 100px;
    position: relative;
    margin: 5px;
}

.attachment-container-list-view .attachment-list .icon {
    text-align: center;
    padding: 30px;
    padding: 17px;
}

.attachment-container-list-view .attachment-list .icon i.fa.fa-file {
    font-size: 34px;
    color: #ddd;
}

.attachment-container-list-view .attachment-list .icon i.glyphicon.glyphicon-trash {
    font-size: 13px;
    color: #a94442;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
}

.attachment-container-list-view .attachment-list .attachment-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    border-top: 1px solid #ddd;
    background-color: #f7f7f7;
}


/* #endregion */


/* #region Select2 Dropdown */

.select2-dropdown {
    border-radius: 0;
    border: 1px solid #ddd;
}

.select2-container {
    width: 100% !important;
}

.select2-dropdown.select2-dropdown--below {
    z-index: 99999;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ccc;
    border-radius: 0;
}

.select2-container .select2-selection--single {
    min-height: 30px;
    height: auto;
    outline: none;
    border: 1px solid #ddd;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #d5d5d5;
    border-radius: 0;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #ccc;
    border-radius: 0;
}

.select2-container .select2-search--inline {
    min-height: 24px;
}

.select2-container .select2-search input {
    min-height: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd;
}

.select2-results__option {
    word-wrap: break-word !important;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #fbfbfb;
}

.select2-container *:focus {
    outline: 1px solid #71a0c9 !important;
}

.select2-selection--multiple *:focus {
    outline: none !important;
}

.cursor-disabled .select2-container .select2-selection--single {
    cursor: not-allowed;
}


/* #endregion */


/* #region MyTask due date */

.delay-date.greater-value {
    color: #01A901 !important;
}

.delay-date.lesser-value {
    color: #ff0000 !important;
}


/* #endregion */


/* #region JSON Edit Modal */

.json-view-edit-container {
    width: 100%;
    height: calc(100vh - 65px);
    height: -ms-calc(100vh - 65px);
    height: -webkit-calc(100vh - 65px);
    height: -moz-calc(100vh - 65px);
}

div.jsoneditor-contextmenu ul li button {
    color: #d4c8c8 !important;
}

div.jsoneditor-contextmenu ul li button div.jsoneditor-expand {
    background-color: #fff !important;
}

div.jsoneditor-contextmenu ul li button:focus,
div.jsoneditor-contextmenu ul li button:hover {
    color: #1a1a1a !important;
}


/* #endregion */


/* #region Confirmation */

.confirmation .modal-dialog {
    width: 30%;
    height: auto;
    margin: 40px auto;
}

.confirmation .modal-dialog .modal-header {
    padding: 5px 10px;
}

.confirmation .modal-dialog .modal-footer {
    padding: 10px;
    position: relative;
}


/* #endregion */


/* #region Dynamic Control */

.dynamic-control-container .dynamic-control label.control-label {
    font-weight: 600;
}

.dynamic-control-container .dynamic-control .auto-complete .dropdown-menu.typeahead {
    display: block !important;
    font-size: 12px;
    margin-left: 15px;
    top: auto;
}

.dynamic-control-container .dynamic-control .auto-complete .dropdown-menu.typeahead .auto-complete-no-result {
    padding: 0 10px;
}

.dynamic-control .form-group .control-label {
    color: gray;
    font-weight: 600;
    font-size: 14px;
}


/* #endregion */


/* #region Dynamic List Modal */

.dynamic-list-modal.modal.left .modal-body,
.dynamic-list-modal.modal.right .modal-body {
    overflow-x: hidden;
}

.dynamic-list-modal.right .modal-dialog {
    width: 90%;
}


/* #endregion */


/* #region Page Loading */

.loading-container {
    background-color: transparent !important;
}

.loading-bar {
    background: #d71921 !important;
}


/* #endregion */


/* #region Scroll Design */

::-webkit-scrollbar {
    width: 12px;
    height: 8px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 5px grey;
}

::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
    border-radius: 10px;
}


/* #endregion */


/* #region Dynamic Listing Page */

.pinned-tab {
    color: #d71921 !important;
    position: absolute !important;
    z-index: 10 !important;
    top: 10px !important;
    right: 5px !important;
}

.modal-content {
    height: 100%;
    border-radius: 0;
}

.sidebar-wrapper .main {
    height: -webkit-calc(100vh - 65px);
    height: -moz-calc(100vh - 65px);
    height: calc(100vh - 65px);
    border-right: 1px solid #f7f7f7;
}


/* #endregion */


/* #region Tab Profile */

.tab-profile {
    width: 100%;
    color: #908787;
    padding: 32px 5px;
    position: relative;
    height: 90px;
}

.tab-profile .tab-profile-title {
    font-size: 20px;
}

.tab-profile .tab-rofile-avatar {
    margin-bottom: 5px;
}

.tab-profile .tab-rofile-avatar .avatar {
    width: 60px;
    height: 60px;
}


/* #endregion */


/* #region Colors */

.set-bg-color-1 {
    background-color: #fdf2d1;
}

.set-bg-color-2 {
    background-color: #fbdfdf;
}

.set-bg-color-3 {
    background-color: #feded6;
}

.set-bg-color-4 {
    background-color: #0080001a;
}

.set-bg-color-5 {
    background-color: #feeed9;
}

.set-bg-color-6 {
    background-color: #fef5d1;
}

.set-bg-color-7 {
    background-color: #fee9ea;
}

.set-bg-color-8 {
    background-color: #f4f4f4;
}

.set-bg-color-9 {
    background-color: #fde2ef;
}

.set-bg-color-10 {
    background-color: #fce1ff;
}

.set-bg-color-11 {
    background-color: #eedfff;
}

.set-bg-color-12 {
    background-color: #dfe2ff;
}

.set-bg-color-13 {
    background-color: #dffcff;
}

.set-bg-color-14 {
    background-color: #dffff7;
}

.set-bg-color-15 {
    background-color: #ecffdf;
}

.set-bg-color-16 {
    background-color: #f7ffdf;
}

.set-bg-blue-light {
    background: rgba(67, 133, 245, 0.2) !important;
}

.set-bg-yellow-light {
    background: rgba(251, 188, 5, 0.2) !important;
}

.set-bg-red-light {
    background: rgba(255, 0, 0, 0.1);
}

.set-bg-fbfbfb {
    background: #fbfbfb !important;
}

.set-bg-f5f5f5 {
    background: #f5f5f5 !important;
}

.set-color-blue {
    color: #4385f5 !important;
}

.set-color-red {
    color: #d71921 !important;
}

.set-color-white {
    color: #ffffff !important;
}

.set-color-999 {
    color: #999999 !important;
}

.set-br-blue {
    border: 1px solid #4385f5 !important;
}

.set-br-yellow {
    border: 1px solid #fbbc05 !important;
}

.set-border-ccc {
    border: 1px solid #cccccc !important;
}


/* #endregion */


/* #region Custom -ui.css */

.rows {
    width: 100%;
    float: left;
    position: relative;
}

.eaxis-header {
    font-size: 16px;
    position: relative;
    padding: 9px 0px;
    color: #1f497d;
}

.eaxis-header span {
    border-bottom: 3px solid #4caf50;
    padding-bottom: 2px;
}

.eaxis-edit {
    position: absolute;
    top: 5px;
    right: 15px;
    padding: 5px 10px;
    background: #fff;
    color: #000;
    font-size: 12px;
    border: 1px solid #f0f0f0;
}

.eaxis-edit-2 {
    color: #000;
    font-size: 15px;
    margin-left: 10px;
}

@media only screen and (max-width: 767px) {
    .navbar {
        height: auto;
    }
    .navbar .navbar-inner .navbar-header {
        float: left !important;
    }
    .navbar .navbar-brand {
        padding: 4px 0px 4px 15px !important;
    }
    .navbar .navbar-inner .navbar-header .navbar-account .account-area {
        top: 0;
        right: 50px !important;
    }
    .page-sidebar.menu-compact {
        left: -47px;
    }
    .page-sidebar.menu-compact~.page-content {
        margin-left: 0;
    }
    .eaxis-div-nav {
        display: block;
    }
    .eaxis-div {
        width: 100% !important;
    }
    .eaxis-tab-box>.nav-tabs {
        width: 100%;
        position: absolute;
        top: 0px;
        left: 0;
        z-index: 99;
    }
    .eaxis-tab-box>.nav-tabs>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .eaxis-edit {
        right: 0;
    }
    .eaxis-div-box {
        height: auto;
        border-right: 0px solid #ddd;
        border-bottom: 1px dotted #ddd;
    }
    .eaxis-footer-left li a {
        padding: 13px 12px;
        margin-right: 0px;
        border-top: 0px solid #ccc;
        border-right: 1px solid #ccc;
        margin-top: 0px;
    }
    .eaxis-label,
    .eaxis-value {
        width: 50%;
    }
    .eaxis-footer-left li a .eaxis-footer-text,
    .eaxis-footer-left li .eaxis-hints {
        display: none;
    }
}


/* #endregion */


/* #region Change Password */

.change-password .modal-dialog {
    width: 35%;
    margin: 45px auto;
}

.change-password .modal-dialog .modal-content {
    height: auto;
}

.new-user .modal-dialog {
    width: 85%;
    margin: 45px auto;
}


/* #endregion */


/* #region Impersonate User */

.impersonate-user .modal-dialog {
    width: 35%;
    margin: 45px auto;
}

.impersonate-user .modal-dialog .modal-content {
    height: auto;
}


/* #endregion */


/* #region */


/* Button Color */

.btn-primary,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary[disabled],
.btn-primary[disabled]:hover,
.btn-primary:active:hover,
.open .btn-primary.dropdown-toggle {
    background-color: #4385f5 !important;
    border-color: #4385f5 !important;
    color: #fff !important;
}

.btn-secondary,
.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary[disabled],
.btn-secondary[disabled]:hover,
.btn-secondary:active:hover {
    background-color: #666 !important;
    border-color: #666 !important;
    color: #fff !important;
}

.highlight-bg {
    background-color: antiquewhite;
}

.section-divider-small {
    width: 100%;
    border-top: 1px solid #ddd;
}

.section-divider {
    width: 100%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    height: 7px;
    background-color: #f4f4f4;
}

.uib-datepicker-popup.dropdown-menu {
    padding: 5px;
}

.btn>.fa,
.btn .typcn,
.btn .glyphicon,
.btn>[class*="wi-"] {
    margin: 0;
}

[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak,
.ng-hide {
    display: none !important;
}

.footer-bar-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: #364150;
    padding: 2px;
    color: #ccc;
    z-index: 999;
    font-size: 11px;
}

.dropdown-menu.datetime-picker-dropdown {
    z-index: 1100;
}


/* Party Role Mapping Modal */

.party-mapping-role.right .modal-dialog {
    width: 650px !important;
}

.tab-list-view-wrapper {
    position: relative;
}

.tab-list-view-wrapper .tab-loading,
.tab-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 999;
}


/* TC Grid */

.tc-dyn-grid-container .tc-dyn-grid-heading {
    padding: 5px 10px;
    margin-right: -2px;
    font-weight: 600;
    font-size: 14px;
    background-color: #ddd;
}

.vertical-menu {
    font-size: 16px;
    color: grey;
}

.vertical-menu .dropdown-list {
    color: rgb(0, 0, 0);
    padding: 5px 10px;
}

.vertical-menu .dropdown-list .doc-menu-icon {
    line-height: 1.42857;
    color: rgb(67, 133, 245);
}


/* #endregion */


/* ----------------------------------------------------- */


/* Absolute Center Spinner */

.page-container-loader {
    position: fixed;
    z-index: 1000;
    height: 2em;
    width: 2em;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
}


/* Transparent Overlay */

.page-container-loader:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
}


/* :not(:required) hides these rules from IE9 and below */

.page-container-loader:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.page-container-loader:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 1500ms infinite linear;
    -moz-animation: spinner 1500ms infinite linear;
    -ms-animation: spinner 1500ms infinite linear;
    -o-animation: spinner 1500ms infinite linear;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}


/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* #endregion */

.schedule-box {
    border: 1px solid #ccc;
}

.schedule-box-border-bottom {
    border-bottom: 1px solid #ccc;
}


/* toggle Checkbox */

.switch {
    position: relative;
    display: inline-block;
    width: 39px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    left: -8px !important;
}


/* Rounded sliders */

.slider.round {
    border-radius: 22px;
}

.slider.round:before {
    border-radius: 50%;
}


/* =============================================
                    Validation CSS
============================================= */

.form-group.has-error .select2-container .select2-selection--single {
    box-shadow: none;
    border-color: #e7bebe !important;
    color: #e46f61;
    background-color: #fffafa !important;
}

.PdfPreviewModalPopup .modal-dialog {
    width: 90%;
    margin: 45px auto;
    height: auto;
}


/* ng-tags-input */

tags-input {
    margin-top: -5px;
}

tags-input .tags .tag-item {
    background: #fff !important;
    color: #5f6368 !important;
    border-radius: 15px !important;
    border: 1px solid #dadce0 !important;
}

tags-input .tags {
    border: 1px solid #d5d5d5 !important;
    box-shadow: none !important;
}

tags-input .tags.focused {
    outline: none !important;
    box-shadow: none !important;
}

tags-input .tags .tag-item .remove-button {
    color: #5f6368 !important;
}

.email-id-suggestion {
    margin-top: 5px;
    width: 100%
}

.email-id-suggestion .left-panel {
    float: left;
}

.email-id-suggestion .left-panel img {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    border-radius: 50%;
}

.email-id-suggestion-name {
    width: 80%;
    float: left;
    cursor: pointer;
    margin-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

tags-input .autocomplete .suggestion-item.selected,
tags-input .autocomplete .suggestion-item.selected em {
    color: #202124 !important;
    background-color: rgba(242, 245, 245, 0.8) !important;
}

.elementDisabled {
    pointer-events: none;
    opacity: 0.5;
}

.dragover {
    border: 3px dashed blue;
}

.timepicker {
    border: 1px solid #ccc;
    float: left;
    width: 100%;
}

.timepicker li {
    list-style: none;
}

.time_select_choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin: 5px;
    padding: 0 5px;
}

.time_select_choice_remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}

.time_search {
    width: 100%;
    position: relative;
    float: left;
}

.time_select_search_field {
    background: transparent;
    border: none !important;
    outline: 0;
    box-shadow: none !important;
    margin: 5px 0;
    padding: 0 5px;
    width: 100%;
}

.time_search:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    position: absolute;
    content: "";
    top: 8px;
    right: 10px;
    color: #737373 !important;
}

.display-block {
    display: block;
}

.display-none {
    display: none;
}

.json-display-disabled {
    width: 100%;
    height: 200px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 7px;
    white-space: pre-wrap;
}

.per50.right .modal-dialog {
    width: 50% !important;
}
.per60.right .modal-dialog {
    width: 60% !important;
}
.per70.right .modal-dialog {
    width: 70% !important;
}
.per75.right .modal-dialog {
    width: 75% !important;
}
.per80.right .modal-dialog {
    width: 80% !important;
}
.per85.right .modal-dialog {
    width: 85% !important;
}
.sm-document-container .drop-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    color: #cccccc;
    border: 1px dashed #cccccc;
    margin: 5px;
    padding: 20px;
}
.sm-email-container .form-control-override input {
    border: none !important;
}

.sm-email-container .newmailattch {
    background-color: #ccdae9;
    display: inline-block;
    border-radius: 4px;
    color: #333;
    white-space: nowrap;
    text-align: center;
    font-weight: 400;
    padding: 5px;
}