#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  height: 100%;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loader_container {
  animation: fade 1.2s linear infinite;
}
#loader {
  width: 100%;
}
#loader::before,
#loader::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 14px;
}
#loader::before {
  animation: load 1.5s linear infinite 0s;
}
#loader::after {
  animation: load 1.5s linear infinite 0.5s;
}
@keyframes load {
  50% {
    height: 42px;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.background-none {
  background: unset !important;
}
label.is-invalid {
  color: #dc3545;
  font-style: italic;
  font-size: 12px;
}
label.is-valid {
  color: #28a745;
  font-style: italic;
  font-size: 12px;
}
label.error {
  color: #dc3545;
  font-style: italic;
  font-size: 12px;
}
span.error {
  color: #dc3545;
  font-style: italic;
  font-size: 12px;
}
.combodate {
  display: flex;
  align-items: center;
}
.datepicker {
  cursor: pointer;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  margin-left: 5px;
  margin-top: 2px;
  margin-bottom: 2px;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__display {
  padding-left: 0px;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  border-right: none;
  position: relative;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove:hover {
  color: red;
  border-radius: unset;
  background-color: unset;
}
.select2-container .select2-search--inline .select2-search__field {
  font-family: "Prompt", sans-serif;
  margin-top: 0;
  height: 21px;
}

.disabled {
  cursor: no-drop !important;
}

.drag-handle {
  color: #1690ed;
  display: inline-block;
  cursor: move;
  cursor: -webkit-grabbing;
}

div#area_billing_item li {
  position: relative;
  padding: 10px;
  /*background: #f0f8ff;*/
  cursor: move;
}

div#area_billing_item a.js-remove {
  cursor: pointer;
  color: #c00;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
}

div#area_billing_item li:hover i {
  opacity: 1;
}

.panel-heading {
  /*border: 1px solid #c5c5c5;*/
  padding: 10px;
  background-color: #e2e9f0;
  color: #000000;
  font-weight: 600;
}

.span_billing_item_total {
  font-size: 16px;
  font-weight: 600;
  color: #1690ed;
}
b {
  color: #1690ed;
}
select option:checked {
  background-color: #ddd;
}

.hide-show-login {
  top: 13px;
  right: 25px;
  position: absolute;
  z-index: 5;
  display: none;
}
.hide-show-login i {
  font-size: 14px;
  float: right;
  cursor: pointer;
  position: absolute;
}

.hide-show-repass {
  right: 10px;
  float: right;
  position: relative;
  z-index: 5;
  display: none;
  top: -30px;
}
.hide-show-repass i {
  font-size: 14px;
  float: right;
  cursor: pointer;
  position: relative;
}
.hide-show-confirmpass {
  right: 10px;
  float: right;
  position: relative;
  z-index: 5;
  display: none;
  top: -30px;
}
.hide-show-confirmpass i {
  font-size: 14px;
  float: right;
  cursor: pointer;
  position: relative;
}

.hide-show-db {
  right: 10px;
  top: -30px;
  float: right;
  position: relative;
  z-index: 5;
}
.hide-show-db i {
  font-size: 14px;
  cursor: pointer;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.toggle.android {
  border-radius: 0px;
}
.toggle.android .toggle-handle {
  border-radius: 0px;
}

.fc-ltr .fc-basic-view td.fc-today .fc-day-number {
  font-weight: 600;
  border: 1px solid #ffe668;
  background-color: #ffe668;
}

.fc-ltr .fc-basic-view .fc-other-month {
  background-color: #f3f3f3;
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

#files-area {
    width: 100%;
    margin: 0 auto;
}
.file-block {
    border-radius: 5px;
    background-color: #dddddd;
    margin: 5px;
    color: #000;
    display: inline-flex;
    padding: 5px;
    align-items: center;
}
.file-block>span.name {
    font-style: italic;
    padding-right: 10px;
    width: max-content;
    display: inline-flex;
}
.file-delete {
    display: flex;
    width: 24px;
    color: initial;
    background-color: #6eb4ff00;
    justify-content: center;
    margin-right: 3px;
    cursor: pointer;
}
.file-delete:hover {
    background-color: #dba7a3;
    border-radius: 5px;
}

#files-area-last {
    width: 100%;
    margin: 0 auto;
}
.file-block-last {
    border-radius: 5px;
    background-color: #dddddd;
    margin: 5px;
    color: #000;
    display: inline-flex;
    padding: 5px;
    align-items: center;
}
.file-block-last>span.name-last {
    font-style: italic;
    padding-right: 10px;
    width: max-content;
    display: inline-flex;
}
.file-block-last>span a.Repair_Item_File {
    color: #333;
}
.file-block-last>span a.Repair_Item_File:hover {
    color: #1690ed;
}
.file-block-last>span a.Service_File {
  color: #333;
}
.file-block-last>span a.Service_File:hover {
  color: #1690ed;
}
.file-delete-last {
    display: flex;
    width: 24px;
    color: initial;
    background-color: #6eb4ff00;
    justify-content: center;
    margin-right: 3px;
    cursor: pointer;
}
.file-delete-last:hover {
    background-color: #dba7a3;
    border-radius: 5px;
}

div#area_zone_rule li {
    position: relative;
    padding: 10px;
    /*background: #f0f8ff;*/
    cursor: move;
}

div#area_zone_rule a.js-remove {
    cursor: pointer;
    color: #c00;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
}

div#area_zone_rule li:hover i {
    opacity: 1;
}

div#area_assign_period li {
    position: relative;
    padding: 10px;
    /*background: #f0f8ff;*/
    cursor: move;
}

div#area_assign_period a.js-remove {
    cursor: pointer;
    color: #c00;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
}

div#area_assign_period li:hover i {
    opacity: 1;
}

div#area_assign_emp li {
    position: relative;
    padding: 10px;
    /*background: #f0f8ff;*/
    cursor: move;
}

div#area_assign_emp a.js-remove {
    cursor: pointer;
    color: #c00;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
}

div#area_assign_emp li:hover i {
    opacity: 1;
}

div#area_service_schedule li {
    position: relative;
    padding: 10px;
    /*background: #f0f8ff;*/
    cursor: move;
}

div#area_service_schedule a.js-remove {
    cursor: pointer;
    color: #c00;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
}

div#area_service_schedule li:hover i {
    opacity: 1;
}

div#area_service_item_other li {
    position: relative;
    padding: 10px;
    /*background: #f0f8ff;*/
    cursor: move;
}

div#area_service_item_other a.js-remove {
    cursor: pointer;
    color: #c00;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
}

div#area_service_item_other li:hover i {
    opacity: 1;
}

/*======================== Stepwizard ======================================*/
.stepwizard-step p {
    margin-top: 10px;
}
.stepwizard-row {
    display: contents;
}
.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}
.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}
.step .stepwizard-row:before {
    top: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 100%;
    background-color: none;
    z-order: 0;
}
.stepwizard-step {
    width: 200px;
    display: inline-block;
    text-align: center;
    position: relative;
}
.step {
    position: initial;
    right: 0;
    top: 20px;
    display: block;
}

.step .success-line {
    width: 100%;
    height: 1px;
    margin: 0;
    padding: 0;
    display: inline-block;
    position: absolute;
    top: 20px;
    border-top: 2px solid #05c158;
}
.step .wait-line {
    width: 100%;
    height: 1px;
    margin: 0;
    padding: 0;
    display: inline-block;
    position: absolute;
    top: 20px;
    border-top: 2px solid #d2d6e1;
}
.step em.st1 {
    left: 60px;
}
.step em.st2 {
    left: 140px;
}
/*.step p.text-active {
    color: #1690ed;
}
.step p.text-wait {
    color: #0c2e60;
}
.step p.text-success {
    color: #05c158;
}*/
.step p {
    padding: 0px 5px;
}
.step div.stepwizard-step .btn-waiting + em + p {
    color: #060606 !important;
}
.step div.stepwizard-step .btn-active + em + p {
    color: #1690ed !important;
}
.step div.stepwizard-step .btn-success + em + p {
    color: #05c158 !important;
}
.step div.stepwizard-step .step-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0;
    padding: 0;
    border-radius: 50px;
    font-size: 20px;
    font-style: normal;
    text-align: center;
    display: inline-block;
}
.step div.stepwizard-step .btn-active {
    color: #ffffff;
    background: #1690ed;
    pointer-events: none;
}
.step div.stepwizard-step .btn-success {
    color: #ffffff;
    background: #05c158;
    pointer-events: none;
}
.step div.stepwizard-step .btn-waiting {
    color: #060606;
    background: #d2d6e1;
    pointer-events: none;
}
/*.step div.stepwizard-step a.disabled {
    pointer-events: none;
    opacity: 1;
}*/

/*======================== Stepwizard ======================================*/

tr.selected td {
    background-color: #dfdfdf !important;
}

#signaturePad {
    border: 1px solid #ced4da;
    padding: 0.575rem 1rem;
}

.hidden-service-inputs {
    display: block !important;
}

.watermark {
  position: absolute;
  z-index: 1;
  display: flex;
  min-height: 50%;
  min-width: 100%;
  top: 25%;
  left: 0;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.watermark-text {
  opacity: 0.6;
  color: #ea4d4d;
  font-size: 50px;
  transform: rotate(340deg);
  -webkit-transform: rotate(340deg);
}

@media (max-width: 576px) {
  .watermark {
    position: absolute;
    z-index: 1;
    display: flex;
    min-height: 50%;
    min-width: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    user-select: none;
  }

  .watermark-text {
    opacity: 0.6;
    color: #ea4d4d;
    font-size: 2em;
    transform: rotate(340deg);
    -webkit-transform: rotate(340deg);
  }
}