@charset "UTF-8";
/*!
 * Is Main Portal Style
 */

:root {
  --is-font-family: "Montserrat", sans-serif;
  --is-primary-color: #43bdd2;
  --is-primary-dark-color: #379eb0;
  --is-light-color: #E0F3FA;
  --is-secondary-color: #383938;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #cfcfcf !important;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #cfcfcf !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #cfcfcf !important;
}
body {
	font-family: var(--is-font-family);
	font-weight: 400;
	color: var(--is-secondary-color);
    overflow-x: hidden;
}
.is-wrapper {
    background-color: #fff;
}
.primary-text-color {
    color: var(--is-primary-color);
}
.secondary-text-color {
    color: var(--is-secondary-color);
}
@keyframes highlight {
    0% {
        background: var(--is-primary-color);
    }
    50% {
        background: yellow;
    }
    100% {
        background: var(--is-primary-color);
    }
}
@-moz-keyframes highlight /* Firefox */ {
    0% {
        background: var(--is-primary-color);
    }
    50% {
        background: yellow;
    }
    100% {
        background: var(--is-primary-color);
    }
}
@-webkit-keyframes highlight /* Safari and Chrome */ {
    0% {
        background: var(--is-primary-color);
    }
    50% {
        background: yellow;
    }
    100% {
        background: var(--is-primary-color);
    }
}
.highlight {
    animation: highlight 1s;
    -moz-animation: highlight 1s infinite;
    -webkit-animation: highlight 1s infinite;
}
@keyframes highlight-color-danger {
    0% {
        color: var(--is-primary-color);
    }
    50% {
        color: #dc3545;
    }
    100% {
        color: var(--is-primary-color);
    }
}
@-moz-keyframes highlight-color-danger /* Firefox */ {
    0% {
        color: var(--is-primary-color);
    }
    50% {
        color: #dc3545;
    }
    100% {
        color: var(--is-primary-color);
    }
}
@-webkit-keyframes highlight-color-danger /* Safari and Chrome */ {
    0% {
        color: var(--is-primary-color);
    }
    50% {
        color: #dc3545;
    }
    100% {
        color: var(--is-primary-color);
    }
}
.highlight-color-danger {
    animation: highlight-color-danger 1s;
    -moz-animation: highlight-color-danger 1s infinite;
    -webkit-animation: highlight-color-danger 1s infinite;
}
@keyframes highlight-border-danger {
    0% {
        border-color: var(--is-primary-color);
    }
    50% {
        border-color: #dc3545;
    }
    100% {
        border-color: var(--is-primary-color);
    }
}
@-moz-keyframes highlight-border-danger /* Firefox */ {
    0% {
        border-color: var(--is-primary-color);
    }
    50% {
        border-color: #dc3545;
    }
    100% {
        border-color: var(--is-primary-color);
    }
}
@-webkit-keyframes highlight-border-danger /* Safari and Chrome */ {
    0% {
        border-color: var(--is-primary-color);
    }
    50% {
        border-color: #dc3545;
    }
    100% {
        border-color: var(--is-primary-color);
    }
}
.highlight-border-danger {
    animation: highlight-border-danger 1s;
    -moz-animation: highlight-border-danger 1s infinite;
    -webkit-animation: highlight-border-danger 1s infinite;
}
/* Loader Style */
.is-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,.9);
    overflow: hidden;
    display: none;
    z-index: 1500;
}
.is-loader svg {
    width: 85px;
    height: 85px;
}
.loader-svg-cls-1, .loader-svg-cls-2 {
    stroke-width: 0px;
}
.loader-svg-cls-1 {
    fill: var(--is-primary-color);
}
.loader-svg-cls-2 {
    fill: var(--is-secondary-color);
}
.is-loader p {
    top:55px;
}
body.no-interaction {
    pointer-events: none !important;
    overflow: hidden !important;
    touch-action: none !important;
}

/* Checkbox & Radio Style  */
.form-switch.indi-form-switch {
    padding-left: 0;
    min-height: 1em;
    display: inline-block;
    margin-bottom: 0;
}
.form-switch.indi-form-switch > .form-check-input {
    margin-left: 0;
    margin-top: 0;
}
.form-switch.form-switch-md {
    min-height: 1.5em;
}
.form-switch.form-switch-md > .form-check-input {
    width: 3em;
    height: 1.5em;
}
.form-switch.form-switch-lg {
    min-height: 2em;
}
.form-switch.form-switch-lg > .form-check-input {
    width: 4em;
    height: 2em;
}
.check-inline {
    margin: 3px;
}
.clip-check:not(.check-inline) label {
    cursor: pointer;
    display: inline-block;
    font-size: .75rem;
    margin-right: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.25rem;
    transition: border .2s linear 0s,color .2s linear 0s;
    white-space: nowrap;
}
.clip-check.check-inline label {
    cursor: pointer;
    display: inline-block;
    font-size: .625rem;
    padding-top: 1.25rem;
    position: relative;
    line-height: 1.25rem;
    transition: border 0.2s linear 0s, color 0.2s linear 0s;
    white-space: nowrap;
    min-width: 1.25rem;
}
.clip-check label:before {
    background-color: #fff;
    border: 1px solid #c8c7cc;
    content: "";
    display: inline-block;
    height: 1.25rem;
    left: 0;
    position: absolute;
    width: 1.25rem;
    border-radius: 0;
    top: 0;
    transition: border .2s linear 0s,color .2s linear 0s;
}
.clip-check.check-inline label:before {
    margin-right: 0px;
}
.clip-check label::after {
    display: inline-block;
    font-size: .75rem;
    height: 1.25rem;
    left: 0;
    position: absolute;
    top: 0;
    transition: border .2s linear 0s,color .2s linear 0s;
    width: 1.25rem;
    text-align: center;
}
.clip-check input[type=checkbox] {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}
.clip-check input[type=checkbox]:checked+label:before {
    border-width: .625rem;
}
.clip-check input[type=checkbox]:checked+label:after {
    color: #fff;
    content: "\f00c";
    font-family: 'FontAwesome';
}
.clip-check input[type=checkbox][disabled]+label {
    opacity: .65;
}
.clip-check input[type=checkbox][disabled]+label:before {
    background-color: #f8f8f8;
}
.clip-check input[type=checkbox]:focus+label:before {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .125rem rgba(13,110,253,.25);
}
.clip-check.check-md label {
    font-size: .875rem;
    margin-right: 1rem;
    padding-left: 2.25rem;
    line-height: 1.5rem;
}
.clip-check.check-md label:before {
    height: 1.5rem;
    width: 1.5rem;
}
.clip-check.check-md label:after {
    font-size: .875rem;
    height: 1.5rem;
    width: 1.5rem;
}
.clip-check.check-md input[type=checkbox]:checked+label:before {
    border-width: .75rem;
}
.clip-check.check-lg label {
    font-size: 1rem;
    margin-right: 1rem;
    padding-left: 2.5rem;
    line-height: 2rem;
}
.clip-check.check-lg label:before {
    height: 1.875rem;
    width: 1.875rem;
}
.clip-check.check-lg label:after {
    font-size: 1rem;
    height: 1.875rem;
    left: 6px;
    width: 1.875rem;
}
.clip-check.check-lg input[type=checkbox]:checked+label:before {
    border-width: .9375rem;
}
.clip-check.check-success input[type=checkbox]:checked+label:before {
    border-color: #5cb85c;
}
.clip-check.check-primary input[type=checkbox]:checked+label:before {
    border-color: var(--is-primary-color);
}
.clip-check.check-warning input[type=checkbox]:checked+label:before {
    border-color: #eea236;
}
.clip-check.check-danger input[type=checkbox]:checked+label:before {
    border-color: #d43f3a;
}
.clip-check.check-info input[type=checkbox]:checked+label:before {
    border-color: #46b8da;
}
.clip-check.check-purple input[type=checkbox]:checked+label:before {
    border-color: #804c75;
}
.clip-radio label {
    cursor: pointer;
    display: inline-block;
    font-size: .75rem;
    margin-right: 1rem;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 6px;
    line-height: 1.25rem;
}
.clip-radio label:before {
    background-color: #fff;
    border: 1px solid #d0d0d0;
    content: "";
    display: inline-block;
    height: 20px;
    left: 0;
    margin-right: 10px;
    position: absolute;
    width: 1.25rem;
    border-radius: 6.25rem;
    bottom: 2px;
    transition: all .3s cubic-bezier(.455,.03,.215,1.33) 0s;
}
.clip-radio label:after {
    border: 1px solid #c8c7cc;
    content: "";
    display: inline-block;
    height: 1.25rem;
    left: 0;
    margin-right : .625;
    position: absolute;
    width: 1.25rem;
    border-radius: 6.25rem;
    bottom: 2px;
    transition:all .3s cubic-bezier(.455,.03,.215,1.33) 0s;
}
.clip-radio input[type=radio]  {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}
.clip-radio input[type=radio]:checked+label:before {
    border-width: 6px;
    background: #f8f8f8;
    border-color: #fff;
}
.clip-radio input[type=radio][disabled]+label {
    opacity:.65;
}
.clip-radio input[type=radio]:focus+label:aft {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .125rem rgba(13,110,253,.25);
}
.clip-radio.radio-md label {
    padding-left: 1.875rem;
    line-height: 1.75rem;
    font-size: .875rem;
}
.clip-radio.radio-md label:before {
    height: 1.5rem;
    width: 1.5rem;
}
.clip-radio.radio-md label:after {
    height: 1.5rem;
    width: 1.5rem;
}
.clip-radio.radio-md input[type=radio]:checked+label:before {
    border-width: 7px;
}
.clip-radio.radio-lg label {
    padding-left: 1.875rem;
    line-height: 1.875rem;
    font-size: 1rem;
}
.clip-radio.radio-lg label:before {
    height: 1.875rem;
    width: 1.875rem;
}
.clip-radio.radio-lg label:after {
    height: 1.875rem;
    width: 1.875rem;
}
.clip-radio.radio-lg input[type=radio]:checked+label:before {
    border-width: .5rem;
}
.clip-radio.radio-success input[type=radio]:checked+label:before {
    background: #5cb85c;
}
.clip-radio.radio-primary input[type=radio]:checked+label:before {
    background: var(--is-primary-color);
}
.clip-radio.radio-info input[type=radio]:checked+label:before {
    background: #46b8da;
}
.clip-radio.radio-warning input[type=radio]:checked+label:before {
    background: #eea236;
}
.clip-radio.radio-danger input[type=radio]:checked+label:before {
    background: #d43f3a;
}
.clip-radio.radio-purple input[type=radio]:checked+label:before {
    background: #804c75;
}
/* Modals */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        -ms-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
.modal-aside.horizontal {
    transition: none;
    -webkit-transition: none;
    transform: none;
    -webkit-transform: none;
    height: 100%;
}
.modal-aside.horizontal.right.show .modal-dialog {
    animation: fadeInRight 150ms;
    -webkit-animation: fadeInRight 150ms;
}
.modal-aside.horizontal .modal-dialog {
    height: 100%;
    margin: 0;
    padding: 0;
    transition: none;
    -webkit-transition: none;
    transform: none;
    -webkit-transform: none;
}
.modal-aside.horizontal .modal-dialog {
    min-height: 100%;
    height: auto;
}
.modal-aside.horizontal .modal-dialog .modal-content {
    height: auto;
    min-height: 100%;
    border: none;
    border-radius: 0;
}
.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Global Adjustments */
a {
    text-decoration: none;
    color: var(--is-primary-color);
}
a:hover, a:focus {
    text-decoration: none;
}
.btn-primary {
    background-color: var(--is-primary-color);
    border-color: var(--is-primary-color);
    color: #ffffff;
}
.btn-outline-primary {
    border-color: var(--is-primary-color);
    color: var(--is-primary-color); 
}
.btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.show, .btn-outline-primary:first-child:active, :not(.btn-check) + .btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary:focus-visible {
    background-color: var(--is-primary-color) !important;
    border-color: var(--is-primary-color) !important;
}
.btn-primary:focus-visible {
    box-shadow: 0 0 0 0.25rem rgba(55, 158, 170, 0.5);
}
.btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary.show, .btn-primary:first-child:active, :not(.btn-check) + .btn-primary:active, .btn-primary:hover, .btn-primary:focus-visible {
    background-color: var(--is-primary-dark-color) !important;
    border-color: var(--is-primary-dark-color) !important;
}
.btn-outline-primary:focus-visible {
    box-shadow: 0 0 0 0.25rem rgba(67, 189, 210, 0.5);
}
.bg-primary {
    background-color: var(--is-primary-color) !important;
}
.border-primary {
    border-color: var(--is-primary-color) !important;
}
.text-primary {
    color: var(--is-primary-color) !important;
}
.nav-link {
    color: var(--is-primary-color);
}
.nav-link:focus, .nav-link:hover {
    color: var(--is-primary-color);
}
.page-link {
    color: var(--is-primary-color);
}
.page-link:hover, .page-link:hover {
    color: var(--is-primary-color);
}
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background-color: var(--is-primary-color) !important;
    border-color: var(--is-primary-color) !important;
    color: #fff !important;
}
.w-80px {
    width: 80px;
}
.btn-default {
    background-color: #fff;
    border-color: #c8c7cc;
    color: #8e8e93;
}
.is-form-wrap {
    margin-bottom: .75rem;
}
.form-label {
    margin-bottom: .375rem;
    font-size: .9375rem;
    font-weight: 500;
}
.form-control {
    padding: .625rem .875rem;
    font-size: .875rem;
    background-color: #fdfdfd;
    border-radius: 0;
    color: var(--is-secondary-color);
    min-height: 43px;
}
textarea.form-control {
    resize: none;
}
.form-control:focus {
    color: var(--is-secondary-color);
    background-color: #fdfdfd;
}
.form-select {
    padding: .625rem 2.25rem .625rem .75rem;
    font-size: .875rem;
    color: var(--is-secondary-color);
    background-color: #fdfdfd;
    border-radius: 0;
}
.input-group-text {
    border-radius: 0;
}
.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    pointer-events: unset;
    cursor: not-allowed;
}
pre {
    color: var(--is-secondary-color);
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: .625rem 1rem;
}
.pac-container {
    z-index: 1100;
}
.action-none {
    cursor: not-allowed;
    pointer-events: none;
}
.hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    bottom: 1px !important;
}
.select2-container:not(.select2) {
    z-index: 1100;
}
.select2-container.select2 .select2-selection {
    padding: .375rem .75rem;
    font-size: .875rem;
    color: var(--is-secondary-color);
    background-color: #fdfdfd;
    border-radius: 0;
    border: var(--bs-border-width) solid var(--bs-border-color);
    min-height: 43px;
}
.select2-container.select2.select2-container--disabled .select2-selection {
    background-color: var(--bs-secondary-bg);
}
.select2-container.select2.select2-container--focus:not(.select2-container--disabled) {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}
.select2-container.select2.select2-container--focus:not(.select2-container--disabled) .select2-selection {
    outline: 0;
    border-color: #86b7fe;
}
.select2-container.select2 .select2-selection--multiple .select2-selection__choice {
    margin: 3px !important;
}
.select2-container.select2.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
    padding-left: 3px !important;
}
.select2-results__option {
    font-size: .875rem;
}
.select2-results__option.orange {
    background-color: orange;
}
.select2-results__option.yellow {
    background-color: yellow;
}
.select2-results__option.pink {
    background-color: pink;
}
.select2-container.select2 .select2-search--inline .select2-search__field {
    vertical-align: top;
}
.select2-container.select2 .select2-selection--single:not(.select2-selection--clearable) .select2-selection__arrow {
    height: 40px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 16px 12px;
    background-repeat: no-repeat;
    background-position: right .75rem center;
    width: 28px;
}
.select2-container.select2 .select2-selection--single .select2-selection__clear {
    height: 30px;
    margin-right: 6px;
}
/*.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    background-position: left .75rem center;
}*/
.select2-container.select2 .select2-selection--single .select2-selection__arrow b {
    border-color: transparent !important;
}
.select2-selection__choice.locked-tag {
    padding-left: 0 !important;
}
.select2-selection__choice.locked-tag .select2-selection__choice__remove {
    display: none;
}
.select2-selection__choice.locked-tag .select2-selection__choice__display {
    padding-left: 5px;
}
.mx-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
}
.mx-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
}
.mx-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
}
.mx-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
}
.mx-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
}
.filter-row {
    margin-right: -0.125rem !important;
    margin-left: -0.125rem !important;
}
.filter-row > * {
    padding: 0.125rem !important;
}
.filter-btn-group {
    flex-wrap: wrap;
}
.btn-group.filter-btn-group > .btn {
    flex: 0 0 auto;
}
.modal-body > img:not(.cropper-hidden),
.modal-body div:not(.cropper-container) > img {
    max-width: 100% !important;
    width: auto !important;
}
.user-task-modal .modal-body img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
}
.modal-body iframe {
    max-width: 100% !important;
    width: 100% !important;
}
.is-activity-log {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: .8125rem;
    line-height: 1.42857143;
    color: var(--is-secondary-color);
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 200px;
}
thead th, tbody th, tfoot th {
    font-weight: 600;
}
thead td, thead th, tbody td, tbody th, tfoot td, tfoot th {
    font-size: .875rem;
}
.cursor-pointer{
    cursor: pointer !important;
}

/* Styles for signature plugin v1.2.0. */
.kbw-signature {
    display: inline-block;
    border: 1px solid #a0a0a0;
    -ms-touch-action: none;
}
.kbw-signature-disabled {
    opacity: 0.35;
}

/* Toast Style  */
#is-toast-container>div.toast {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 10px 10px 10px 50px;
    width: 300px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    color: #fff;
    opacity: .8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity = 80);
}
#is-toast-container>div.toast:hover{
    -moz-box-shadow: 0 0 12px #000;
    -webkit-box-shadow: 0 0 12px #000;
    box-shadow: 0 0 12px #000;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    filter: alpha(opacity = 100);
    cursor: pointer;
}
#is-toast-container>div div.toast-body{
    padding:0px !important;
}
#is-toast-container>div.bg-info {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important
}
#is-toast-container>div.bg-danger {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important
}
#is-toast-container>div.bg-success {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important
}
#is-toast-container>div.bg-warning {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important
}

/* Login */
body.login {
	background-color: #FAFAFA;
}
.main-login {
	max-width: 450px;
	width: 100%;
	margin: 0 25px;
	position: relative;
}
.main-login .logo {
    padding: 0 10px;
    margin-top: 30px;
}
.main-login .box-login, .main-login .box-forgot, .main-login .box-register {
	background: #FFFFFF;
	border-radius: 5px;
	overflow: hidden;
	padding: 15px;
	margin: 15px 0 65px 0;
	box-shadow: 0 0 8px rgba(0,0,0,.05);
}
fieldset {
    background: #ffffff;
    border: 1px solid #e6e8e8;
    border-radius: 5px;
    margin: 20px 0 20px 0;
    padding: 25px;
    position: relative;
}
fieldset legend {
    background: inherit;
    color: var(--is-primary-color);
    font-size: 15px;
    left: 10px;
    padding: 0 10px;
    position: absolute;
    top: -12px;
    width: auto;
    border: none;
}
fieldset p {
	font-size: 14px;
	color: #909090;
}
span.input-icon, span.input-help {
    display: block;
    position: relative;
}
.input-icon > input {
    padding-left: 2rem;
}
.input-icon > [class*="fa-"], .input-icon > [class*="ti-"] {
	bottom: 0;
	color: var(--is-primary-color);
	display: inline-block;
	left: 8px;
	line-height: 43px;
	padding: 0 3px;
	position: absolute;
	top: -1px;
	z-index: 2;
}
.main-login a.forgot {
	margin-top: 10px;
	color: #909090;
	font-size: 12px;
	text-shadow: 1px 1px 1px #FFFFFF;
	display: inline-block;
}
.main-login a.resend-code i {
	visibility: hidden;
}
.main-login .copyright {
	color: #909090;
    font-size: 12px;
    margin: 0 auto;
    padding: 10px 10px 0;
    text-align: center;
}

/* Header */
.is-header {
    border-top: .875rem solid var(--is-primary-color);
}
.header-logo {
    padding: 3rem 1rem;
    border-bottom: 1px solid var(--is-secondary-color);
}
.header-logo img {
    width: 100%;
    max-height: 125px;
}
.header-nav-left > ul > li {
    margin-right: .65rem;
}
.header-nav-right > ul > li {
    margin-left: .65rem;
}
.header-nav ul > li > a {
    background-color: var(--is-secondary-color);
    width: 2rem;
    height: 2rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}
.header-nav ul > li > a.active {
    background-color: var(--is-primary-color);
}
.header-nav ul > li > a > img {
    max-width: 1rem;
}

/* Welcome */
.birthday-wish-task .modal-body * {
    font-family: 'Oleo Script Swash Caps';
    font-size: 22px;
}
#hellosign_container iframe {
    height: calc(100vh - 70px) !important;
}
body.full-screen {
    overflow: hidden !important;
}
body.full-screen #user-task-list {
    padding: 15px;
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
}
body.full-screen .task-table-wrapper {
    height: calc(100vh - 82px) !important;
    max-height: calc(100vh - 82px) !important;
}
.task-table-wrapper {
    max-height: 400px;
    border-radius: .85rem;
}
.timer_block {
    display: inline-block;
    text-align: center;
    margin-right: 1.25rem;
    margin-top: 1rem;
    position: relative;
}
.timer_value {
    background-color: var(--is-primary-color);
    font-size: 1.85rem;
    line-height: 3.25rem;
    min-width: 50px;
    padding: 0 5px;
    height: 3.25rem;
    display: block;
    color: #fff;
    border-radius: 6px;
}
.timer_label {
    display: block;
    font-size: .75rem;
    padding-top: .35rem;
}
.timer_block::before {
    content: ":";
    font-size: 1.85rem;
    line-height: 3rem;
    position: absolute;
    right: -14px;
    top: 0;
}
#inactive_timer > h5, #inactive_timer_edit > h5 {
    margin: 1rem 0 0;
}
#inactive_timer > .timer_block:last-child, #inactive_timer_edit > .timer_block:last-child {
    margin-right: 0px;
}
#inactive_timer > .timer_block:last-child::before, #inactive_timer_edit > .timer_block:last-child::before {
    content: "";
}
.heading-line-primary {
    width: 125px;
    height: .25rem;
    background: var(--is-primary-color);
    display: block;
    margin: .25rem auto .6rem;
}
.heading-line-secondary {
    width: 75px;
    height: .2rem;
    background: var(--is-secondary-color);
    display: block;
    margin: 0 auto;
}
.home-tab-link {
    border-width: .3125rem;
    border-style: solid;
    border-color: var(--is-primary-color);
    color: var(--is-secondary-color);
    border-radius: .85rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0;
    min-height: 5.3125rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    line-height: 1.5rem;
    box-shadow: 0px 12px 22px 0px rgb(0 0 0 / 8%);
    height: 100%;
    text-align: center;
}


/* Profile */
.user-profile-wrapper {
    display: flex;
}
.user-profile-wrapper div[class*="col-"] {
    height: 80px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}
.pic-holder {
    text-align: center;
    position: relative;
    border-radius: 5px;
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
}
.pic-holder input {
    height: 100%;
}
.profile-upload-btn {
    position: absolute;
    top: 0px;
    left: 20px;
}
.profile-crop-btn {
    position: absolute;
    top: 0px;
    left: 96px;
}
.profile-download-btn {
    position: absolute;
    top: 0px;
    left: 58px;
}
.profile-badge{
    width: 200px;
    padding: 0px;
    border: none;
    border-radius: 12px;
    margin-bottom: .5rem;
    height: auto;
    text-align: center;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    font-family: "Montserrat", sans-serif;
}
.profile-badge .profile-top{
    background-color:#383938;
    height: 178px;
    border-bottom: 4px solid #3e4648;
    position: relative;
}
.profile-badge .profile-top .badge-holder{
    width: 50px;
    height: 10px;
    background-color: #FFFFFF;
    top: 15px;
    position: absolute;
    right: calc(50% - 25px);
    border-radius: 22px;
}
.profile-badge .profile-top img.badge-logo{
    border-radius: 8px;
    width: 111px;
    margin-top: 30px;
}
.profile-badge .profile-center{
    padding-top: 50px;
    height: auto;
}
.profile-badge .profile-center .profile-title {
    text-transform: uppercase;
    margin: 0px;
    line-height: 1.1;
    color: #3E4648;
    font-size: .875rem;
    font-weight: 500;
}
.profile-badge .profile-center .job-title{
    text-transform: uppercase;
    font-size: .625rem;
    display: block;
    color: #3E4648;
}
.profile-badge .profile-top .profile-photo{
    width: 113px;
    height: 113px;
    border-radius: 50%;
    position: absolute;
    bottom: -50px;
    right: calc(50% - 56.5px);
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}
.profile-badge .profile-top .profile-photo-border{
    width: 115px;
    height: 115px;
    border: 2px solid #3e4648;
    border-radius: 50%;
    position: absolute;
    bottom: -50px;
    right: calc(50% - 57.5px);
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 9;
}
.profile-badge .profile-top .profile-photo img{
    width: 100%;
    height: auto;
}
.profile-badge .profile-bottom{
    height: 35px;
    width: 100%;
    background-color: #383938;
    border-top: 4px solid #3e4648;
}
.profile-badge .profile-bottom h5 {
    margin: 8px 0px;
    padding: 0px;
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    line-height: .875rem;
}

/* Dispatch Calendar */
.dc-toolbar.dc-toolbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 999;
    width: 100%;
    min-height: 75px;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
    margin: 0 !important;
    padding-top: 1rem;
    padding-bottom: .5rem;
}
.dc-toolbar ul > li {
    margin-right: .25rem;
    margin-bottom: .25rem;
}
.dc-toolbar ul > li:last-child {
    margin-right: 0;
}
.dc-toolbar ul > li .select2-container.select2 .select2-selection {
    padding: .25rem .75rem;
    min-height: 38px;
}
.btn-check.dc-checkbox-filter:checked + .btn {
    background-color: var(--is-primary-color);
    border-color: var(--is-primary-color);
}
.dc-toolbar-table {
    overflow: hidden;
}
.dc-table-wrapper {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}
.dc-table-wrapper > .table-responsive {
    max-width: 100%;
    width: 100%;
}
.dc-table, .dc-table-fixed {
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #ddd;
    font-size: .85rem;
    min-width: 950px;
    max-width: 100%;
    width: 100%;
}
.dc-table tr > th, .dc-table-fixed tr > th {
    text-align: center;
    padding: .125rem;
    font-weight: 600;
}
.dc-table tr > th, .dc-table tr > td {
    padding: 0;
}
.dc-table > thead > tr > th, .dc-table > thead > tr > td, .dc-table > tbody > tr > th, .dc-table > tbody > tr > td, .dc-table > tfoot > tr > th, .dc-table > tfoot > tr > td {
    vertical-align: top;
}
.dc-table tr.dt-group-tr > th {
    color: #fff;
    font-size: 1.25rem;
    padding: .25rem;
    text-align: center;
}
.installer-calendar-view {
    background-color: var(--is-primary-color);
    color: #fff;
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 1rem;
    font-size: .75rem;
    padding: .125rem;
    line-height: 1rem;
}
.dt-area-tr {
    background-color: #f0f0f0;
}
.dc-table .dt-area-tr > td {
    vertical-align: middle;
    text-align: center;
    padding: .075rem !important;
}
.dt-area-tr > td button {
    border: none;
    padding: .275rem;
    line-height: .5rem;
    font-size: .75rem;
    border-radius: .125rem;
}
.dt-area-cell {
    /* white-space: nowrap; */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    word-wrap: break-word;
    padding: 0 .25rem 0 .25rem;
    line-height: 1.1;
    font-weight: 500;
    width: calc(100% - 64px);
}
.dv-checkbox.clip-check label {
    margin-right: 0;
    padding-left: 1.25rem;
    line-height: 1.25rem;
}
.installer-info-td {
    vertical-align: middle;
    text-align: center;
    font-weight: 500;
}
.mw-online, .mw-offline {
    position: relative;
    padding-top: 1.25rem;
}
.mw-online::before, .mw-offline::before {
    content: '';
    position: absolute;
    width: .5rem;
    height: .5rem;
    border-radius: 100%;
    top: .5rem;
    left: .5rem;
}
.mw-online::before {
    background-color: #00ff00;
}
.mw-offline::before {
    background-color: #ff0000;
}
.mw-online::after {
    content: attr(data-mw-hours);
    position: absolute;
    top: .125rem;
    left: 1.5rem;
    color: #333;
    font-size: .8125rem;
}
.dc-jobs-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
    border-color: #ddd;
}
.dc-jobs-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
    border-color: #ddd;
}
.dc-jobs-table > tbody > tr > td {
    font-size: .625rem;
    height: 1.125rem;
    border-bottom: 1px solid #ddd;
    width: 100%;
}
.dc-jobs-table > tbody > tr:last-child > td {
    border-bottom: none;
}
.dc-jobs-table > tbody > tr > td.ui-draggable-dragging {
    max-width: 200px;
}
.dt-area-cell, .task_td, .installer-info-td {
    cursor: pointer;
}
.dt-holiday-td {
    text-align: center;
    background-color: #000;
    color: #fff;
    vertical-align: middle !important;
}
.ui-droppable-hover {
    background-color: #ccc;
}
.next_day_appointment {
    background-color: #008081;
    color: #fff;
}
.not-pre-activation, .not_confirmed {
    background-color: yellow;
    color: #000;
}
.pre-activation {
    background-color: deeppink;
    color: #fff;
}
.confirmed {
    background-color: #00ff00;
    color: #000;
}
.book-job-requested {
    background-color: #36b5ff;
    color: #000;
}
.book-job-confirmed {
    background-color: #ff1493;
    color: #000;
}
.redispatch {
    background-color: orange;
}
.fsl_change_pending {
    background-color: #FF5B00;
}
.fsl_sale_pending {
    background-color: hotpink;
}
.investigate {
    background-color: purple;
    color: #fff;
}
.not-pre-activation.confirmed {
    background: #00ff19; /* Old browsers */
    background: -moz-linear-gradient(left, #00ff19 50%, #f1f430 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #00ff19 50%,#f1f430 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #00ff19 50%,#f1f430 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ff19', endColorstr='#f1f430',GradientType=1 ); /* IE6-9 */
    color: #000;
}
.pre-activation.not_confirmed {
    background: #f1f430; /* Old browsers */
    background: -moz-linear-gradient(left, #f1f430 50%, #00ff19 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #f1f430 50%,#00ff19 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #f1f430 50%,#00ff19 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f430', endColorstr='#00ff19',GradientType=1 ); /* IE6-9 */
    color: #000;
}
.not-pre-activation.confirmed.email {
    background: #00ff19; /* Old browsers */
    background: -moz-linear-gradient(left, #00ff19 50%, #ffa500 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #00ff19 50%,#ffa500 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #00ff19 50%,#ffa500 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ff19', endColorstr='#ffa500',GradientType=1 ); /* IE6-9 */
    color: #000;
}
.not-pre-activation.not_confirmed.email {
    background: #f1f430; /* Old browsers */
    background: -moz-linear-gradient(left, #f1f430 50%, #ffa500 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #f1f430 50%,#ffa500 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #f1f430 50%,#ffa500 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f430', endColorstr='#ffa500',GradientType=1 ); /* IE6-9 */
    color: #000;
}
.not_confirmed.preactivation_not_complete, .not_confirmed.preactivation_not_complete.email {
    background: #f1f430; /* Old browsers */
    background: -moz-linear-gradient(left, #f1f430 50%, red 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #f1f430 50%, red 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #f1f430 50%, red 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f430', endColorstr='red',GradientType=1 ); /* IE6-9 */
    color: #000;
}
.confirmed.preactivation_not_complete, .confirmed.preactivation_not_complete.email {
    background: #f1f430; /* Old browsers */
    background: -moz-linear-gradient(left, #00ff19 50%, red 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #00ff19 50%, red 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #00ff19 50%, red 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ff19', endColorstr='red',GradientType=1 ); /* IE6-9 */
    color: #000;
}
.not-pre-activation.redispatch {
    background: #00ff19; /* Old browsers */
    background: -moz-linear-gradient(left, orange 50%, #f1f430 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, orange 50%,#f1f430 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, orange 50%,#f1f430 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='orange', endColorstr='#f1f430',GradientType=1 ); /* IE6-9 */ 
}
.pre-activation.redispatch {
    background: #f1f430; /* Old browsers */
    background: -moz-linear-gradient(left, orange 50%, #00ff19 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, orange 50%,#00ff19 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, orange 50%,#00ff19 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='orange', endColorstr='#00ff19',GradientType=1 ); /* IE6-9 */ 
}
.not-pre-activation.investigate {
    background: #00ff19; /* Old browsers */
    background: -moz-linear-gradient(left, purple 50%, #f1f430 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, purple 50%,#f1f430 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, purple 50%,#f1f430 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='purple', endColorstr='#f1f430',GradientType=1 ); /* IE6-9 */ 
}
.pre-activation.investigate {
    background: #f1f430; /* Old browsers */
    background: -moz-linear-gradient(left, purple 50%, #00ff19 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, purple 50%,#00ff19 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, purple 50%,#00ff19 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='purple', endColorstr='#00ff19',GradientType=1 ); /* IE6-9 */ 
}
.book-job-requested.confirmed {
    background: #00ff19; /* Old browsers */
    background: -moz-linear-gradient(left, #00ff19 50%, #36b5ff 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #00ff19 50%,#36b5ff 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #00ff19 50%,#36b5ff 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ff19', endColorstr='#36b5ff',GradientType=1 ); /* IE6-9 */
    color: #000;
}
.book-job-requested.not_confirmed {
    background: #f1f430; /* Old browsers */
    background: -moz-linear-gradient(left, #f1f430 50%, #36b5ff 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #f1f430 50%,#36b5ff 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #f1f430 50%,#36b5ff 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f430', endColorstr='#36b5ff',GradientType=1 ); /* IE6-9 */
    color: #000;
}
.book-job-requested.investigate {
    background: purple; /* Old browsers */
    background: -moz-linear-gradient(left, purple 50%, #36b5ff 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, purple 50%,#36b5ff 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, purple 50%,#36b5ff 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='purple', endColorstr='#36b5ff',GradientType=1 ); /* IE6-9 */
    color: #000;
}
.book-job-confirmed.confirmed {
    background: #00ff19; /* Old browsers */
    background: -moz-linear-gradient(left, #00ff19 50%, #ff1493 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #00ff19 50%,#ff1493 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #00ff19 50%,#ff1493 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ff19', endColorstr='#ff1493',GradientType=1 ); /* IE6-9 */
    color: #000;
}
.book-job-confirmed.not_confirmed {
    background: #f1f430; /* Old browsers */
    background: -moz-linear-gradient(left, #f1f430 50%, #ff1493 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #f1f430 50%,#ff1493 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #f1f430 50%,#ff1493 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f430', endColorstr='#ff1493',GradientType=1 ); /* IE6-9 */
    color: #000;
}
.book-job-confirmed.investigate {
    background: purple; /* Old browsers */
    background: -moz-linear-gradient(left, purple 50%, #ff1493 50%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, purple 50%,#ff1493 50%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, purple 50%,#ff1493 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='purple', endColorstr='#ff1493',GradientType=1 ); /* IE6-9 */
    color: #000;
}
.completed:not(.highlighted) {
    background: #00b050 !important;
    background-color: #00b050 !important;
    color: #fff !important;
}
.complete-verified:not(.highlighted) {
    background: darkgreen !important;
    background-color: darkgreen !important;
    color: #fff !important;
}
.customer_rebook_nlos:not(.highlighted), .cancel:not(.highlighted), .not_complete:not(.highlighted) {
    background: red !important;
    background-color: red !important;
    color: #fff !important;
}
.rebook_nlos_verified:not(.highlighted) {
    background: darkred !important;
    background-color: darkred !important;
    color: #fff !important;
}
.completed.not_confirmed, .complete-verified.not_confirmed, .rebook_nlos_verified.not_confirmed, .not_complete.not_confirmed {
    position: relative;
    padding: 2px;
}
.completed.not_confirmed::before, .complete-verified.not_confirmed::before, .rebook_nlos_verified.not_confirmed::before, .not_complete.not_confirmed::before {
    content: "";
    position: absolute;
    border: 2px solid yellow;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.dt-job-cell.highlighted {
    background: yellow !important;
    background-color: yellow !important;
    color: #000 !important;
    padding: 3px;
    position: relative;
}
.dt-job-cell.highlighted::before {
    content: "";
    position: absolute;
    border: 3px solid red;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.add-closure-outer {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 20px;
}
.dc-address-info {
    margin-bottom: .375rem;
}
.dc-address-info > li {
    font-size: .815rem;
    padding: 0 .375rem;
    border-right: 1px solid var(--is-secondary-color);
    line-height: 1rem;
}
.dc-address-info > li:last-child {
    border-right: 0;
}
.dc-map-actions {
    text-transform: uppercase;
    min-height: 43px;
    width: 185px;
}
#map_canvas {
    width: 100%;
    height: 350px;
}
.dc-modal.modal .awesomplete {
    width: 100%;
}
.datepicker table tr td.alt-date {
    background-color: #5cb85c;
    border-color: #398439;
}
.datepicker table tr td.job-date {
    position: relative;
}
.datepicker table tr td.job-date::before, .datepicker table tr td.job-date::after {
    content: "";
    width: 18px;
    height: 1px;
    background-color: red;
    position: absolute;
    top: 14px;
    left: 7px;
}
.datepicker table tr td.job-date::before {
    transform: rotate(-45deg);
}
.datepicker table tr td.job-date::after {
    transform: rotate(45deg);
}
.dispatch-actions > a {
    margin: 12px 10px 0 0;
    display: inline-block;
}
.dispatch-actions > a:hover, .dispatch-actions > a:focus {
    text-decoration: none;
}
.alt-date-popover {
    width: 250px !important;
}
.alt-date-popover > .arrow {
    left: 2rem !important;
}
.alt-date-popover > .popover-body {
    padding: .75rempx;
}
.alt-date-popover-wrapper {
    position: relative;
}
.close-popover {
    background-color: transparent;
    border: none;
    padding: 2px;
    position: absolute;
    top: -15px;
    right: -10px;
    line-height: normal;
    font-size: 1rem;
    font-weight: bold;
}
.alt-date-popover-wrapper > strong {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    font-size: .75rem;
    padding: 0 .5rem;
    line-height: normal;
}
.alt-date-popover-wrapper > strong.reqdate-wrapper {
    padding: 1px 0;
    background-color: #d9d9d9;
    max-width: 175px;
    margin: .25rem auto;
}
.altdates-wrapper > input {
    display: none !important;
}
.altdates-wrapper > label {
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: .375rem 0 0 0;
    font-size: .875rem;
    cursor: pointer;
}
.altdates-wrapper > label::before, .altdates-wrapper > label::after {
    display: none !important;
}
.altdates-wrapper > label > span:not(.form-control) {
    background-color: var(--is-primary-color);
    border: 1px solid var(--is-primary-color);
    width: 105px;
    color: #fff;
    text-align: center;
    padding: .25rem;
}
.altdates-wrapper > label > span.form-control {
    padding: .25rem;
}
.altdates-wrapper > input:checked + label > span.form-control {
    background-color: #ccc;
}

/* Address Verify */
.address-verify-wrap {
    background-color: #FAFAFA;
}
.address-verify-box {
    flex: 0 0 auto;
    max-width: 700px;
    width: 100%;
}
.box-address {
    background: #FFFFFF;
    border-radius: 5px;
    overflow: hidden;
    padding: 1rem;
    margin: 1rem 0 2rem 0;
}
.address-verify-box .copyright {
    font-size: .75rem;
    margin: 0 auto;
    padding: 0 .625rem 0;
    text-align: center;
}
.box-address fieldset {
    margin-top: 0;
}
.steps-wrapper .form-step {
    display: none;
}
.steps-wrapper .form-step.active-step {
    display: block;
}
/* Calendar Count */
.dc-count-table > thead > tr > th {
    background-color: #4a86e8;
}
.dc-count-table > tbody > tr > th {
    background-color: #f9cb9c;
}
.dc-count-table th.new_install, .dc-count-table th.service_call, .dc-count-table th.conversion, .dc-count-table th.xwr_xhp_truck_roll, .dc-count-table th.recovery {
    background-color: #a4c2f4;
}

/* Schedule Map */
.cm-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}
.controls-sidebar {
    max-width: 275px;
    width: 100%;
    height: 100Vh;
    overflow-x: auto;
    background-color: #fff;
}
.sidebar-title {
    margin: 0;
    padding: 20px 15px;
    background-color: var(--is-primary-color);
    color: #fff;
    display: flex;
}
.sidebar-title > h3 {
    font-size: 20px;
    margin: 0;
    flex-grow: 1;
}
.sidebar-title > button, .sidebar-title > button:hover, .sidebar-title > button:focus {
    opacity: .75;
    color: #fff;
}
.cs-list {
    list-style: none;
    margin: 0;
    padding: 15px;
}
.cs-list > li {
    padding: 1rem 0;
    border-bottom: 1px solid #e3e3e3;
}
.cs-list > li > label {
    margin: 0;
    font-size: 18px;
}
.map-outer {
    position: relative;
    flex-grow: 1;
}
#infowindow-content .title {
    font-weight: bold;
}
#coverage-map #infowindow-content {
    display: inline;
}
.sidebar-toggle {
    display: none;
}
#cmap-address {
    border: none;
    padding: 10px 15px;
    width: 100%;
    background-color: #fff;
}

/* Schedule Map */
.route-info-wrap {
    flex: 0 0 auto;
    width: 22%;
    height: 100Vh;
    padding: 1rem;
    overflow-y: auto;
}
.route-list > li, .invalid-jobs-list > li {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}
.invalid-jobs-list > li:first-child {
    border-top: 1px solid #ccc;
}
.route-map-wrap {
    flex: 1 0 auto;
    height: 100Vh;
}
#estimated-time {
    font-size: .8125rem;
}

/* Customer Portal  */
.intro-text {
    font-size: 1.25rem;
}
.intro-company-logo {
    text-align: center;
}
.customers-portal-login {
    background-color: var(--is-primary-color);
    padding: 1.5rem 3rem;
    border-radius: .25rem;
    border: 1px solid #3399a6;
    margin-top: 1.5rem;
}
.customers-portal-login > p {
    font-size: 1.25rem;
    text-align: center;
    color: #fff;
}
.portal-input-wrap {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--is-secondary-color);
    border-radius: 5px;
    padding: 20px;
    border: 1px solid #262626;
}
.portal-input-wrap label {
    min-width: 175px;
    max-width: 175px;
    color: #fff;
    font-size: 1.25rem;
    padding-right: .625rem;
}
.customers-portal-navigate {
    text-align: center;
    padding: 40px 0 0;
}
.navigate-btn {
    min-width: 250px;
    font-size: 1.5rem;
    font-weight: 600;
    margin: .5rem;
}
.work-order-details > h2 {
    text-align: center;
    margin: 0 0 1.5rem;
}
.work-order-details label {
    min-width: 175px;
    max-width: 175px;
    font-size: 1.25rem;
    padding-right: .625rem;
}
.work-order-details label > small {
    font-size: .75rem;
    line-height: normal;
    display: block;
}
.work-order-details .xplore-logo > img {
    max-height: 100px;
}
.work-order-details textarea.form-control {
    height: auto !important;
    resize: none;
}
.work-order-address > h2 {
    text-align: center;
}
.work-order-address > p {
    text-align: center;
    margin: 0 0 2rem;
    font-size: 1.25rem;
}
.location-option {
    max-width: 275px;
    display: inline-block;
    width: 100%;
    color: var(--is-secondary-color);
    text-align: center;
    border: 4px solid var(--is-primary-color);
    border-radius: 5px;
    padding: 1rem;
}
.location-option > strong {
    display: block;
}
.location-option > img {
    max-width: 100px;
    width: 100%;
    margin-bottom: .5rem;
}
.address-verification-methods:not(.active-step), .address-verification-map:not(.active-step) {
    display: none;
}
.work-order-schedule > h2 {
    text-align: center;
}
.work-order-schedule > p {
    text-align: center;
    margin: 0 0 2rem;
    font-size: 1.25rem;
}
.schedule-date {
    max-width: 450px;
    margin: 0 auto 1.5rem;
}
.schedule-date > p {
    margin-bottom: 1.5rem;
}
.schedule-date > .datepicker-inline {
    width: auto;
}
.schedule-date > .datepicker {
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    border: 1px solid var(--is-secondary-color);
    border-radius: .25rem;
    margin: 0 auto;
}
.schedule-date > .datepicker table tr td, .schedule-date > .datepicker table tr th {
    width: 40px;
    height: 40px;
}
.work-order-schedule .btn {
    font-size: 1.25rem;
    padding: .5rem 2rem;
    font-weight: 600;
    margin: .5rem;
}
.work-order-confirm > h2 {
    text-align: center;
    margin: 0 0 2rem;
}
.work-order-confirm .customers-portal-navigate > p {
    max-width: 325px;
    margin: 1rem auto 0;
}
.request-schedule-outer {
    max-width: 575px;
    margin: 0 auto;
}
.request-schedule-outer > .schedule-date > .datepicker table tr td.active.active {
    background-color: #5cb85c;
    border-color: #398439;
}
.request-schedule-outer > .schedule-date > .datepicker table tr td.job-date {
    position: relative;
    color: #fff;
    background-color: #204d74;
    border-color: #122b40;
}
.request-schedule-outer > .schedule-date > .datepicker table tr td.job-date::before, .request-schedule-outer > .schedule-date > .datepicker table tr td.job-date::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: red;
    position: absolute;
    top: 19px;
    left: 9px;
}
.request-schedule-outer > .schedule-date > .datepicker table tr td.job-date::before {
    transform: rotate(-45deg);
}
.request-schedule-outer > .schedule-date > .datepicker table tr td.job-date::after {
    transform: rotate(45deg);
}
.request-schedule-outer > p {
    margin-bottom: 25px;
}
.req-date {
    margin-top: 10px;
}
.req-date > p {
    margin-bottom: 0px;
}
.req-date > span:not(.form-control) {
    background-color: #017dc5;
    border: 1px solid #017dc5;
    width: 165px;
    color: #fff;
    font-size: 1.25rem;
    text-align: center;
    padding: .375rem;
}
#confirmationModal {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
}
#confirmationModal:not(.show-modal) {
    display: none !important;
}
.confirm-modal-body {
    padding: 1.25rem;
    background-color: #fff;
    border-radius: 8px;
    max-width: 475px;
    position: relative;
}
.confirm-modal-body > .btn-close {
    position: absolute;
    top: 10px;
    right: 12px;
}
.confirm-modal-body img {
    max-width: 160px;
}
.confirm-modal-body h2 {
    font-size: 1.75rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
}
.confirm-date {
    border: 1px solid var(--is-primary-dark-color);
    background-color: var(--is-primary-color);
    color: #fff;
    padding: .25rem 1.5rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    width: 85%;
    margin: .625rem auto;
}
.confirm-desc > h3 {
    font-size: 1.25rem;
    text-align: center;
    text-decoration: underline;
    margin-top: 0;
}
.confirm-desc > p {
    font-size: .875rem;
    text-align: center;
    font-style: italic;
}


/* Installer Calendar */
.more-work-wrapper {
    padding: .85rem;
    border: .25rem solid var(--is-primary-color);
    max-width: 285px;
    margin: 0 auto 1.5rem;
    border-radius: .5rem;
}
.more-work-wrapper > strong {
    line-height: normal;
}
.form-switch .form-check-input.more-work-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    background-color: #b02a37;
    border-color: #b02a37;
    cursor: pointer;
}
.form-switch .form-check-input.more-work-input:focus {
    box-shadow: 0 0 0 .25rem rgba(220,53,69,.25);
}
.form-switch .form-check-input.more-work-input:checked {
    background-color: #146c43;
    border-color: #13653f;
}
.form-switch .form-check-input.more-work-input:checked:focus {
    box-shadow: 0 0 0 .25rem rgba(25,135,84,.25);
}
.hide-onread {
    font-size: .6125rem;
    padding: .25rem;
    vertical-align: text-top;
}
.schedule-jobs-list > li {
    border: 8px solid var(--is-primary-color);
    border-radius: .85rem;
    padding: .5rem calc(var(--bs-gutter-x) * .5) 0;
    overflow: hidden;
    font-size: .875rem;
    position: relative;
    margin-bottom: 1rem;
    background-color: #fff;
}
.schedule-jobs-list > li:last-child {
    margin-bottom: 0;
}
.schedule-jobs-list > li *:not(.past-due-highlight) {
    z-index: 1;
}
.past-due-highlight {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - 3rem);
    margin-bottom: 0;
    font-size: 2.75rem;
    z-index: 0;
    opacity: .75;
}
.draft-job {
    position: relative;
    overflow: hidden;
}
.draft-job::before {
    content: "Draft";
    position: absolute;
    background-color: yellow;
    font-size: .65rem;
    transform: rotate(-38deg);
    left: -18px;
    top: 5px;
    bottom: 0;
    width: 65px;
    height: 15px;
    font-weight: 500;
    color: #000;
    line-height: 15px;
}
.install-notes {
    resize: none;
}
/* Invoice */
.void-invoice {
    position: relative;
}
.void-invoice::after {
    content: "";
    background-image: url('../images/void.png');
    background-size: 20%;
    background-repeat: repeat-y;
    background-position: center top;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
}
.invoice-section-title {
    border-bottom: 1px solid var(--is-secondary-color);
    display: flex;
}
.invoice-section-title > h2 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: calc(1rem + .7vw);
    background-color: var(--is-secondary-color);
    color: #fff;
    padding: .25rem .875rem;
    font-weight: 700;
}
.invoice-section-title > .invoice_no {
    padding-left: 1rem;
}
.invoice-section-body {
    padding: 1.25rem 2.25rem;
}
.awesomplete {
    width: 100%;
}
.payment_details .pro_qty, .payment_details .pro_price, .payment_details .pro_total {
    flex: 0 0 auto;
    width: 33.33333333%;
}
.add_row > button {
    background-color: transparent;
    border: none;
    padding: .125rem;
    font-weight: 600;
}
.add_row > button > i {
    color: var(--is-primary-color);
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: .25rem;
}
.sub_total {
    max-width: 400px;
    width: 100%;
    height: auto;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--is-secondary-color);
    margin-left: auto;
}
.tax_details > div, .sub_total > div:not(.tax_details) {
    padding: .5rem;
    border-bottom: 1px solid #cecece;
    display: flex;
    justify-content: space-between;
    max-width: 100%;
}
.sub_total .tax_details {
    padding: 0px;
    border-bottom: 0px solid #cecece;
}
.pay_gateway > ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: .75rem;
}
.pay_gateway > ul > li {
    padding-right: .5rem;
}
.pay_gateway > ul > li img {
    max-height: 30px;
}
.payment-form-wrapper {
    max-width: 375px;
    width: 100%;
    position: relative;
}
.payment-form-wrapper iframe {
    width: 100% !important;
}
#payment-flow-message {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    height: auto;
    display: block;
    font-family: "Square Sans Text VF","Square Sans Text", Arial, sans-serif;
    font-size: 14px;
}
#payment-flow-message.error {
    color: #bf0020;
}
#payment-flow-message.success {
    color: #3374ff;
}
.sq-card-wrapper .sq-card-message {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.sq-card-wrapper .sq-card-message.sq-visible {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}
.card-btn-loading::before {
    content: "";
    border-radius: 50%;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 3px solid rgba(255, 255, 255, 0.2);
    border-right: 3px solid rgba(255, 255, 255, 0.2);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    border-left: 3px solid #fff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}
.card-container-loading, .card-container-loading::after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
    margin: 0 auto;
}
.card-container-loading {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(0, 0, 0, 0.2);
    border-right: 1.1em solid rgba(0, 0, 0, 0.2);
    border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
    border-left: 1.1em solid #000;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.scan-barcode-button {
    width: 60px;
    background-size: initial;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../images/barcode.png');
}
.terms_checkbox small {
    text-align: justify;
}
#customer-sig, .customer-signature-image {
    width: 100%;
    min-width: 260px;
    height: 280px;
    border: 2px solid #3e4648;
    border-bottom: 15px solid #3e4648;
    position: relative;
    overflow: hidden;
}
#customer-sig::after, .customer-signature-image::after {
    content: 'Signature:';
    position: absolute;
    left: 0;
    right: 0;
    width: auto;
    border-bottom: 1px solid #ccc;
    bottom: 100px;
    font-size: .875rem;
}
.customer-signature-image > img {
    max-width: 130%;
}
.invoice-thumb-wrap {
    max-width: 150px;
    height: 75px;
    overflow: hidden;
    width: 100%;
}
#select2-FTTP_Codes-results li.select2-results__option--selected, #select2-TBC_Codes-results li.select2-results__option--selected, #select2-cfo_codes-results li.select2-results__option--selected {
    display: none;
}
.ostr-btn {
    background-color: transparent;
    border: none;
    padding: 0;
    font-weight: 600;
    line-height: normal;
}
.ostr-btn > i {
    color: var(--is-primary-color);
    font-size: 1.5rem;
}
.mur-btn {
    background-color: transparent;
    border: none;
    padding: 0;
    font-weight: 600;
}
.mur-btn > i {
    color: var(--is-primary-color);
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: .25rem;
}
.shaw-serial-field {
    display: -ms-flexbox;
    display: flex;
}
.shaw-serial-field > .select2-container {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}
.assign_room_no, .shaw-serial-field .awesomplete, .assign_channel {
    width: 125px;
}
.assign_channel {
    height: 100%;
}
.shaw-serial-field > .awesomplete > ul > li {
    font-size: .875rem;
}
.audit-badge {
    position: fixed;
    right: 1rem;
    bottom: 30%;
    background: cadetblue;
    border-radius: .75rem;
    color: white;
    font-style: oblique;
    font-weight: 600;
    width: 190px;
    z-index: 999;
    padding: .75rem;
    text-align: center;
}

/* Time Sheet and compensation */
.manager-approved-table tr td:has(:not(select):not(input)) {
    padding: 5px;
}
.comp-detail-table tr td input,.time-sheet-table tr td{
    padding: 0;
    vertical-align: middle !important;
}
.manager-approved-table tr td select,.time-sheet-table tr td select{
    padding: .25rem 2.25rem .25rem .75rem !important;
    min-width: 100px;
}
.comp-detail-table tr td input ,.manager-approved-table tr td input,.time-sheet-table tr td input.time_in, .time-sheet-table tr td input.time_out, .time-sheet-table tr td input.l_time{
    width: 100%;
    height: 30px;
    background-color: transparent;
    border: none;
    text-align: center;
}
.manager-approved-table tr td.lo-rate input{
    text-align: right;
}
.manager-approved-table tr td.lo-actions div.d-flex{
    justify-content: center;
}
.manager-approved-table tr td.lo-actions i.fa{
    margin: 4px 4px 4px 15px;
    cursor: pointer;
}
.manager-approved-table tr td.lo-actions button{
    padding: 0;
}
.manager-approved-table tr td.lo-actions button,.manager-approved-table tr td input, .manager-approved-table tr td select{
    background-color: transparent;
    border: none;
}
.manager-approved-table tr td div.checkbox.clip-check{
    margin-top: -13px;
    width: 20px;
}
.manager-approved-table tr td.lo-rate{
    text-align: right;
}
.comp-detail-table tr td.lo-invoice{
    width: 104px !important;
}
.comp-detail-table tr td.lo-account{
    width: 134px !important;
}
.comp-detail-table tr td.lo-work-order, .comp-detail-table tr td.lo-rate{
    width: 120px !important;
}
.comp-detail-table tr td.lo-dis-date, .comp-detail-table tr td.lo-date{
    width: 80px !important;
    text-align: center;
}
.comp-detail-table tr.bg-warning > td{
    background-color: #FFFF00FF;
}
.manager-approved-table tr.bg-danger > td, .manager-approved-table tr.bg-danger > td input{
    background-color: #ff0000;
    color: #FFFFFF;
}
.manager-approved-table tr.bg-danger td select{
    color: #FFFFFF;
}
.manager-approved-table tr.bg-danger td select option{
    color: #000000;
}
.manager-approved-table tr td select:disabled,.manager-approved-table tr td input:disabled{
    background-color: transparent;
    padding-left: 0px !important;
}
.time-sheet-table tr td:not(.lo-work-type) div.checkbox.clip-check{
    margin-top: -25px;
}
.comp-detail-table:not(:has(.datepicker)) thead td,
.comp-detail-table:not(:has(.datepicker)) thead th,
.comp-detail-table:not(:has(.datepicker)) tbody td {
    font-size: .75rem !important;
    min-width: 80px !important;
    vertical-align: middle !important;
}
.comp-detail-table tbody td.lo-actions,.comp-detail-table thead th.lo-actions {
    min-width: 55px !important;
}

/* Toolbox Pages */
.nav-item .active{
    background-color: #eee !important;
}
.global-search{
    background: var(--is-primary-color);
    padding: 1rem;
}
.global-search .search-form {
    max-width: 850px;
    margin: 0 auto;
}
.global-search .search-input {
    height: 60px;
    border-radius: 4px !important;
}
.global-search button[type="submit"] {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 1px;
    width: 60px;
    padding: 0;
    border: none;
    background: 0 0;
    color: #000;
    cursor: pointer;
    height: 60px;
    line-height: 60px;
    min-width: 0;
}
.global-search button[type="submit"]::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    margin: auto;
    background-image: url("../images/toolbox-search-icon.png");
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
    color: #9d9d9d;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -moz-opacity: .8;
    -khtml-opacity: .8;
    opacity: .8;
}
.ui-widget.ui-widget-content {
    border: 1px solid #f1f1f1;
}
.ui-menu .ui-menu-item-wrapper {
    padding: .625rem 1rem;
    border-bottom: 1px solid #f1f1f1;
    font-size: 1rem;
}
.ui-menu .ui-menu-item-wrapper.ui-state-active {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #f1f1f1;
    background-color: #035385;
    color: #fff; 
}
.ui-widget.ui-widget-content > .ui-menu .ui-menu-item-wrapper:last-child {
    border-bottom: 0;
}
.article-list {
    list-style: none;
}
.article-list li {
  padding: 5px 0;
  margin-bottom: 0;
}
.article-list{
    padding-left: 0;
}
.category-header {
    padding: 40px 0 20px;
}
.category-tree-hr, .article-body {
    padding-top: 25px;
    border-top: 1px solid #cbcbcb;
}
.article-body {
    margin-bottom: 2.5rem;
}
.category-branch {
    margin-bottom: 2rem;
}
.side-column-inner {
    border-top: 1px solid #cbcbcb;
    padding-top: 25px;
}
.sub-article-list li {
    color: #035385;
    text-decoration: none;
    font-size: 15px;
    list-style: none;
}
.article-list-faq{
     padding-left: 0;
}
.article-list-faq li {
  padding: 5px 0;
  line-height: 1.5em;
  list-style: none;
  margin-bottom: 0;
  font-size: 13px;
}
.recent-article-header {
  margin: 0 0 15px;
  font-size: 14px;
  text-transform: uppercase;
}
.sub-nav {
    margin: 1.25rem 0;
}
.breadcrumbs {
    display: none;
    position: relative;
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
    padding: 0;
}
.breadcrumbs li {
    display: inline-block;
    font-size: 14px;
    color: #333842;
}
.breadcrumbs li a {
    color: #035385;
    text-decoration: none;
    line-height: 18px;
}
.breadcrumbs li + li::before {
    content: "/";
    margin: 0 8px;
    text-decoration: none;
    color: #7b868a;
}
.article-body img {
    max-width: 100%;
    height: auto !important;
}
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background-color: #007aff;
    border-color: #007aff;
}

/* Commission Sheet */
.commission-sheet-tabs-wrapper table tr td div.h1{
    color: var(--is-primary-color);
}
.commission-sheet-tabs-wrapper table tr.heading td, .commission-sheet-tabs-wrapper table thead tr th{
    background-color: #38393850 !important;
}
.commission-sheet-tabs-wrapper table tr.bg-light-blue td{
    background-color: lightblue !important;
}
.commission-sheet-tabs-wrapper table tr td .lo-delete-inv{
    cursor: pointer;
}
.commission-sheet-tabs-wrapper tr.custom-entry td::before{
    position: absolute;
    color: #fff;
    font-size: 15px;
    top: 10px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.commission-sheet-tabs-wrapper .custom-entry td{
    position: relative;
}
.commission-sheet-tabs-wrapper .custom-entry td.lo-invoice::before {
    content: "Invoice#";
}
.commission-sheet-tabs-wrapper .custom-entry td.lo-customer-name::before {
    content: "Customer Name";
}
.commission-sheet-tabs-wrapper .custom-entry td.xplornet_date::before {
    content: "Date";
}
.commission-sheet-tabs-wrapper .custom-entry td.lo-account-no::before {
    content: "Customer Account#";
}
.commission-sheet-tabs-wrapper .custom-entry td.lo-work-order::before {
    content: "Workorder#";
}
.commission-sheet-tabs-wrapper .custom-entry td.lo-amt::before {
    content: "Amount Claimed";
}
.commission-sheet-tabs-wrapper .custom-entry td:empty::before {
    display: block !important;
}
.commission-sheet-tabs-wrapper .custom-entry td:not(:empty)::before {
    display: none;
}
.commission-sheet-tabs-wrapper .custom-entry td:focus::before {
    display: none !important;
}
.commission-sheet-tabs-wrapper table tr td input.dogdate {
    background-color: transparent;
    border: none;
    width: 100%;
    height: 100%;
}
.commission-sheet-tabs-wrapper table tr td input.linecust {
    background-color: transparent;
    border: none;
    width: 100%;
    height: 100%;
}
.commission-sheet-tabs-wrapper ::-webkit-input-placeholder { /* Chrome, Safari, Edge */
    color: #fff;
}
.commission-sheet-tabs-wrapper :-ms-input-placeholder { /* Internet Explorer */
    color: #fff;
}
.commission-sheet-tabs-wrapper ::placeholder { /* Modern browsers */
    color: #fff;
}

/*inventory_audit*/
.form-control.notesOffice {
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    overflow:auto;
    overflow-x: hidden;
    overflow-y: visible;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 200px;
    resize: none;
}
textarea.writeNotes {
    display: block;
    width: 100%;
    height: auto;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    max-width: 100%;
}

/*installer_assign_products*/
.table > tbody > tr.voided_product > td, .legend_btn4 {
    background-color: red !important;
    color: #ffffff !important;
    border-top: none;
}
.drp.modal-body {
    max-height: calc(100vh - 190px);
    overflow-y: auto;
}
#legends_modal .legend_btn_div div {
    color: #000;
    padding: 5px !important;
    font-size: 14px;
}
.table > tbody > tr.yellow > td, .legend_btn1 {
    background-color: yellow !important;
}
.table > tbody > tr.orange > td, .legend_btn2 {
    background-color: orange !important;
}
.table > tbody > tr.lightpink > td, .legend_btn3 {
    background-color: lightpink !important;
}
.table > tbody > tr.voided_product > td, .legend_btn4 {
    background-color: red !important;
    color: #ffffff !important;
    border-top: none;
}
.table > tbody > tr.voided_order > td {
    background-color: #f5cccb !important;
}
.popover-body {
    padding: 5px !important;
}
.popover-body img {
    width: 100%;
}
.kbw-signature {
    display: inline-block;
    border: 1px solid #a0a0a0;
    -ms-touch-action: none;
}
.kbw-signature-disabled {
    opacity: 0.35;
}
.table > thead > tr.add_audit_tr > th {
    background-color: #4183c0;
    text-align: center;
    color: white;
}
.table > tbody > tr.add_order_tr > th {
    background-color: #4183c0;
    text-align: center;
    color: white;
    padding: 0;
    font-size: 16px;
}
#order_form > #crud_table > .table > tbody > tr > td {
    font-size: 13px;
}
#order_form > #crud_table > .table > tbody > tr > td > textarea.pr_notes {
    border: none; 
    background:transparent; 
    height: auto !important;
    padding: 5px 0 0 5px;
}

/*offie_inventory_count*/
.installer_equipment_table thead tr td, .installer_equipment_table thead tr th, 
.installer_equipment_table tbody tr td, .installer_equipment_table tbody tr th{
    font-size: 14px;
    padding: 7px;
}
.resize-handle {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 117px;
    margin-top: -16px;
    cursor: nwse-resize;
}
#ALBERTA_tbl, #ONTARIO_tbl, #SASKATCHEWAN_tbl, #BRITISH_COLUMBIA_tbl, #MANITOBA_tbl {
    position: relative;
    overflow: auto;
    height: 465px;
    overflow-y: auto;
}
.sticky-header-iet th {
    position: sticky;
    top: 0;
    z-index: 12;
    background-color: white;
}
.table > tbody > tr.lightblue > td, .table > tbody > tr.lightblue > th {
    background-color: lightblue !important;
}
body.full-screen, body.full-screen2 {
    overflow: hidden !important;
}
body.full-screen #british_columbia_tab, body.full-screen #alberta_tab, body.full-screen #saskatchewan_tab, body.full-screen #manitoba_tab, body.full-screen #ontario_tab {
    padding: 15px;
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

/*organization chart*/
.footer_bottom {
    background-color: #007aff;
}
.installer_message, .office_message, .org_chart_message {
    font-size:13pt;
    font-family:Calibri,sans-serif;
    color:#000000;
    text-transform: initial;
}
ul.dashed {
    list-style-type: none;
}
ul.dashed > li {
    text-indent: -5px;
}
ul.dashed > li:before {
    content: "-";
    text-indent: -5px;
}
#sample-table-1-installer td, #sample-table-1-installer th,#sample-table-1-office td, #sample-table-1-office th {
    font-size: 14px;
    padding: 5px;
    text-align: center;
    font-family:Arial;
}
#container h4 {
    text-transform: none;
    font-size: 14px;
}
#container p {
    font-size: 13px;
    line-height: 16px;
}
#container {
    min-width: 300px;
    margin: 1em auto;
    height: 550px;
    border: 2px solid rgb(51, 122, 183);
    margin-top: 5px;
    position: relative;
    overflow: auto;
    text-align: center;
    background: #fff;
}
body.full-screen {
    overflow: hidden !important;
}
body.full-screen .org_chart {
    padding: 15px;
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.node.companyName {
    height: 70px !important;
}
.node {
    height: 50px !important;
}
.orgchart {
    background: #fff;
    transform-origin: 0 0; /* Ensures scaling is from the top-left corner */
}
.orgchart .edge, .toggleBtn.oci, .oci.parentNodeSymbol {
    display: none !important;
}

.companyName .title {
    background-color: white !important;
}
.mp_node .title {
    background-color: #007eba !important;
}
.managers_node .title {
    background-color: #a6d7f0 !important;
    color: black !important;
}
.node.cat_node .title {
    background-color: #bee9af !important;
    color: black !important;    
}
.insteller_node .title {
    background-color: #ffeba9 !important;
    color: black !important;
}
.org_chart .title {
    display: flex;
    padding: 8px;
    align-items: center;
    justify-content: center;
    margin: auto;
    height: 100% !important;
    flex-direction: column;
    border-radius: 5px !important;
    width: auto !important;
    min-width: 130px !important;
    border: 0.5px solid grey;
    font-weight: normal !important;
}
.name_div {
    font-size: 16px;
}
.desig_div {
    font-size: 13px;
}
.img_div img {
    height: 50px;
    max-width: 100%;
    max-height: 100%;
}
textarea.notes_not_focus:focus {
    outline: none !important;
    box-shadow: none !important;
}
.table > tbody > tr.tr_focus_color:focus-within > td {
    background: yellow;
}
.table > tbody > tr.tr_focus_color > td.tdorderqty > input {
    background: transparent;
    border: unset;
    outline: unset;
    text-align: center;
    width: 100%;
}
body.modal-open {
    overflow: hidden;
}

/*work scheduler*/
#week-picker-wrapper .datepicker .datepicker-days tr td.active~td, #week-picker-wrapper .datepicker .datepicker-days tr td.active {
    color: #fff;
    background-color: #04c;
    border-radius: 0;
}
#week-picker-wrapper .datepicker .datepicker-days tr:hover td, #week-picker-wrapper .datepicker table tr td.day:hover, #week-picker-wrapper .datepicker table tr td.focused {
    color: #000!important;
    background: #e5e2e3!important;
    border-radius: 0!important;
}

/* Monthly Sale Report */
.my-btn{
     padding: 20px 18px;
    border-radius: 10px;
    font-size: 20px;        
}
.newbtn {
    min-height: 220px;    

}
.newbtn .txt p{
    margin: 0;  
}
.newbtn .txt img {
    max-width: 80px;
    height: auto;
}
.newbtn span.txt {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    line-height: 1.1;
    text-align: center;
    font-size: 16px;
}

.newbtn{
    position: relative;
    color: #000;
    background-color: var(--is-primary-color);
    min-height: 165px;
}
.newbtn_small{
     position: relative;
    color: #000;
    background-color: var(--is-primary-color);
    min-height: 55px;
}

.newbtn::before ,.newbtn_small::before {
    content: ' ';
    background: url(../images/box.png) no-repeat;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: 100% 100%;
    border-radius: 10px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.40);   
}
.big1::before {    
    background: url(images/big1.png) no-repeat;
    background-size: 100% 100%;
}
.small_number{
    font-size: 18px;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    margin: 0;
    color: red !important;
}
.scores_outer{
    padding: 30px 25px;
} 
.small_box {
display: flex;
flex-wrap: wrap;
padding: 0px 3px;
}  
.scores .big{ font-size: 35px; margin: 0; color: red}
.scores h2, .scores h4{ color: #000;}
.small_box .my-btn{
    font-size: 15px !important;
    background-color: #3e4648 !important ;
}
.row0 .my-btn{
    font-size: 25px !important;
    background-color: #3e4648 !important ;
}   
.row2 .my-btn{
    font-size: 22px !important;
    background-color: #3e4648 !important ;
}   
.row0 h2{ font-size: 30px;  }
.row1 h2{ font-size: 18px;  }
.row2 h2{ font-size: 36px;  }
.scores.scores-full-screen {
    width: 100%;
    height: 100%;
    background-color: white;
    overflow-x: auto;
    padding: 0 1rem;
}
.types-score {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -8px;
    margin-left: -8px;
}
.my-h4 {
    font-size: 15px;
    margin: 9px 0;
    padding: 7px 0;
    text-align: center;
}
.ui-datepicker-calendar {
    display: none;
}
   .datepicker table tr td span.active{
    background: #04c!important;
    border-color: #04c!important;
}
.datepicker .datepicker-days tr td.active {
    background: #04c!important;
}
#week-picker-wrapper .datepicker table tr td.disabled,
#week-picker-wrapper .datepicker table tr td.disabled:hover,
.lo-date .datepicker table tr td.disabled,
.lo-date .datepicker table tr td.disabled:hover{
  background: #000;
  color: #fff;
}
#week-picker-wrapper .datepicker .datepicker-days tr td.active~td, #week-picker-wrapper .datepicker .datepicker-days tr td.active {
    color: #fff;
    background-color: #04c;
    border-radius: 0;
}
#week-picker-wrapper .datepicker .datepicker-days tr:hover td, #week-picker-wrapper .datepicker table tr td.day:hover, #week-picker-wrapper .datepicker table tr td.focused {
    color: #000!important;
    background: #e5e2e3!important;
    border-radius: 0!important;
}

/*main: onboarding*/
body.blurred > div.is-wrapper {
    filter: blur(7px);
    transition: filter 0.5s ease;
    cursor: not-allowed;
    user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}
body.blurred:after {
    content: '⚠️ Developer Tools Restricted: Please close Developer Tools for an optimal experience.';
    color: #ffffff;
    background-color: var(--is-secondary-color);
    padding: 20px;
    position: fixed;
    border-radius: 5px;
    top: calc(50vh - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    width: calc(100% - 40px);
    margin: 20px;
}

.onboarding-wrapper iframe{
    border: none;
}
.onboarding-wrapper #hellosign_container iframe{
    height: calc(100vh - 50px) !important;
}

/*progressbar*/
.onboarding-wrapper #progressbar {
    text-align: center;
    margin-bottom: 30px;
    overflow: auto;
    color: lightgrey;
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding-left: 0px;
}

.onboarding-wrapper #progressbar .active {
    color: var(--is-secondary-color);
}

.onboarding-wrapper #progressbar li {
    list-style-type: none;
    font-size: 12px;
    min-width: 130px;
    float: left;
    position: relative;
    z-index: 1;
}

/*Icons in the ProgressBar*/
.onboarding-wrapper #progressbar li.active:before {
    font-family:FontAwesome;
    content: "\f111";
}

.onboarding-wrapper #progressbar li.ob-completed:before {
    font-family:FontAwesome;
    content: "\f058";
}

.onboarding-wrapper #progressbar li:before {
    font-family:FontAwesome;
    content: "\f017";
}

/*ProgressBar before any progress*/
.onboarding-wrapper #progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 46px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: var(--is-secondary-color);
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

/*ProgressBar connectors*/
.onboarding-wrapper #progressbar li:after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--is-secondary-color);
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

/*Color number of the step and the connector before it*/
.onboarding-wrapper #progressbar li.active:before, #progressbar li.active:after {
    background: var(--is-primary-color);
}

.onboarding-wrapper #progressbar li.ob-completed:before, #progressbar li.ob-completed:after {
    background: var(--is-primary-color);
}
.onboarding-wrapper .installer-sign-div {
    width: 1200px;
    margin: 1%;
    border: 3px solid var(--is-primary-color);
    padding: 10px;
    min-width: 1200px !important;
}

..onboarding-wrapper installer-sign-div * {
    color: #000 !important;
}

.onboarding-wrapper .installer-sign-div label {
    font-weight: bold !important;
    white-space: nowrap !important;
}

.onboarding-wrapper .installer-sign-div p {
    margin: 0px 18px !important;
}

.onboarding-wrapper .installer-sign-div h3 {
    margin: 5px 0px;
    font-weight: bolder !important;
}

.onboarding-wrapper .installer-sign-div table * {
    font-size: 18px;
    color: #000 !important;
}

.onboarding-wrapper .installer-sign-div table td {
    vertical-align: bottom;
}

.onboarding-wrapper .installer-sign-div span.line {
    border-bottom: 1px #333 solid;
    width: 100%;
}

/*main: jhsa form*/
.installer-sign-div{
    width: 1200px;
    margin: 1%;
    border: 3px solid #4D75BA;
    padding: 10px;
    min-width: 1200px !important;
}
.installer-sign-div *{
    color: #000 !important;
}
.installer-sign-div label{
    font-weight: bold !important;
    white-space: nowrap !important;
}
.installer-sign-div p{
    margin: 0px 18px !important;
}
.installer-sign-div h3{
    margin: 5px 0px;
    font-weight: bolder !important;
}
.installer-sign-div table *{
    font-size: 18px;
    color: #000 !important;
}
.installer-sign-div table td{
    vertical-align: bottom;
}
.installer-sign-div span.line{
    border-bottom: 1px #333 solid;
    width: 100%;
}

/* Global*/


/*for check box allignments*/
.form-switch.form-switch-md{
    min-height: 1.5em;
    display: flex;
    align-items: flex-end;
}
.form-switch.form-switch-md > .form-check-label {
    margin-left: 5px;
}


#signArea {
    height: 280px;
    border: 2px solid var(--is-secondary-color);
    border-bottom: 15px solid var(--is-secondary-color);
    min-width: 260px;
    min-height: 202px;
    position: relative;
    width: 100%;
    overflow: hidden;
}


/* Footer  */
.is-footer {
    border-bottom: .875rem solid var(--is-secondary-color);
    padding-top: 100px;
}



/* Responsive Media Queries */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .modal-aside.horizontal .modal-dialog {
        position: absolute;
        top: 0;
    }
    .modal-aside.horizontal .modal-dialog {
        bottom: 0;
    }
    .modal-aside.horizontal.right .modal-dialog {
        right: 0;
    }
    .freeze-table th:nth-child(1), .freeze-table td:nth-child(1) {
        left: 0;
    }
    .sticky-header-iet th:nth-child(1), .sticky-header-iet th:nth-child(2) {
        position: sticky;
        top: 0;
        z-index: 13;
        background-color: white;
    }
    .body_category_iet th:nth-child(1), .body_category_iet th:nth-child(2) {
        position: sticky;
        background-color: white;
        z-index: 3;
        font-weight: bold;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #cma-container {
        position: absolute;
        z-index: 100;
        width: 500px;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 8px;
        background-color: #fff;
        box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
    }
    .sidebar-title > button {
        display: none;
    }
    .m5 {
        margin: 40px 0;
    }
    .jobtype-card {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        padding: 15px 8px;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .page-heading > h1 {
        font-size: 2.75rem;
    }
    .dc-modal.modal > .modal-dialog {
        max-width: 50% !important;
        width: 100%;
    }
    .jobtype-card {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        padding: 15px 8px;
    }
    .article-column {
        padding-right: 50px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}

/* applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {}

/* applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .container-fluid, .dc-toolbar.dc-toolbar-fixed {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }
    .page-heading > h1 {
        font-size: calc(1.625rem + 1.5vw);
    }
}

/* applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .route-info-wrap {
        width: 100%;
        height: auto;
        padding: 1rem 1rem 1.25rem;
    }
    .route-map-wrap {
        flex: 0 0 auto;
        width: 100%;
    }
    #cma-container {
        background-color: var(--is-primary-color);
        padding: 15px 25px;
        display: flex;
    }
    .sidebar-toggle {
        display: block;
        border: 1px solid #fff;
        color: #fff;
        background-color: transparent;
        padding: .5rem .75rem;
        border-radius: .25rem;
        margin-right: 1rem;
    }
    .controls-sidebar {
        position: fixed;
        left: -275px;
        top: 0;
        bottom: 0;
        z-index: 999;
        transition: transform 0.3s ease;
    }
    .controls-sidebar.show {
        transform: translateX(275px);
    }
    .intro-text, .intro-company-logo {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .intro-company-logo {
        text-align: center;
    }
    .intro-text-outer {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .intro-text > p {
        font-size: 1.25rem;
    }
    .customers-portal-login {
        padding: 1.5rem;
    }
    .customers-portal-login > p {
        font-size: 1.25rem;
    }
    .portal-input-wrap label {
        min-width: 150px;
        font-size: 1.25rem;
    }
    .work-order-details label {
        min-width: 150px;
        max-width: 150px;
        font-size: 1.125rem;
    }
    .jobtype-card {
        -ms-flex: 0 0 33.3334%;
        flex: 0 0 33.3334%;
        max-width: 33.3334%;
        padding: 15px 8px;
    }
    .mx-5{
        margin: 15px 0;
    }
    .big1 .txt.text-uppercase {
        font-size: 40px !important;
    }
}

/* applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .comp-nav-tabs.nav-tabs li{
        width: 100%;
    }
    .dc-toolbar-filter:not(.dc-mobile-toolbar) > ul > li:not(.toolbar-toggle-li) {
        display: none;
    }
    .customers-portal-body p {
        font-size: 1rem;
    }
    .customers-portal-login, .portal-input-wrap {
        padding: 1rem;
    }
    .form-group {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .portal-input-wrap label {
        width: 100%;
    }
    .location-option {
        margin: 0 0 1.25rem; 
    }
    .work-order-details label {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    .xplore-logo {
        display: none;
    }
    .address-verification-methods > .row > div {
        text-align: center;
    }
    .jobtype-card {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    html {
        font-size: 14px;
    }
    .header-logo img {
        max-width: 320px;
    }
    .heading-line-primary {
        width: 90px;
        margin: .25rem auto .5rem;
    }
    .heading-line-secondary {
        width: 50px;
    }
    .invoice-section-title > h2 {
        font-size: 1.25rem;
    }
    .invoice-section-body {
        padding: 1rem .75rem;
    }
    .over_flow {
        width: 100%;
        height: auto;
        overflow: scroll;
        margin-bottom: 0;
        padding-bottom: 1rem;
    }
    .fix_width {
        min-width: 530px;
    }
    #customer-sig, .customer-signature-image {
        height: 250px;
    }
    .confirm-modal-body > .flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .confirm-modal-body {
        margin: 0 1rem;
    }
    .confirm-modal-body h2 {
        font-size: 1.75rem;
        margin: .625rem 0 0;
    }
    .confirm-date {
        padding: 2px 10px;
        font-size: 1.25rem;
    }
    .confirm-desc > h3 {
        font-size: 1.25rem;
    }
    .jobtype-card {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    #resetMonth{
        width:100%;
        margin: 10px 0;
    }
    #go-button{
        width:100%;
    }
    .is-footer {
        padding-top: 50px;
    }
}