#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: -27px;
}
.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: -27px;
}
.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 td.fc-sun .fc-day-number {
  color: #f9f9f9;
  background-color: #ff0000;
}

.fc-ltr .fc-basic-view td.fc-sat .fc-day-number {
  color: #f9f9f9;
  background-color: #ff0000;
}

.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;
}
