.accordion__pane__toggle::after{

}

.accordion__pane__toggle::after{

}

.hover-em-sm:hover{
  transform: scale(1.2, 1.2);
  position: relative;
  text-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hover-em:hover{
  transform: scale(1.1, 1.1);
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

tr.hover-em:hover{
  background-color: #a0aec0;
  color: #1d3557;
}

.dark tr.hover-em:hover{
  color: #1d3557;
  background-color: #a0aec0;
}

.pagination li .pagination__link:hover{
  --border-opacity: 1;
  border-width: 1px;
  border-color: #457b9d;
}

.dark .pagination li .pagination__link:hover{
  --border-opacity: 1;
  border-width: 1px;
  border-color: #a0aec0;
}

.pagination li .pagination__link.pagination__link--active{
  --border-opacity: 1;
  border-width: 1px;
  border-color: #1d3557;
}

.dark .pagination li .pagination__link.pagination__link--active{
  --border-opacity: 1;
  border-width: 1px;
  border-color: #457b9d;
}

.pagination li.disabled .pagination__link:hover{
  border-width: 0;
}

.full-width{
  width: max-content
}

.side-menu{
  font-size: 1rem;
}
.toggle-checkbox:checked {
right: 0;
border-color: #457b9d;
}

.toggle-checkbox:checked + .toggle-label {
background-color: #457b9d;
}
  
img.invert{
filter: invert(100%);
}

div.invert{
    color: #1F2937;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.printingHeader{
    font-size: 24pt;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 30px;
    text-align: center;

}

form:not(.ng-pristine) .ng-invalid{
    border-color: #D32929 !important;
}

.mt-80{
    margin-top: 25rem;;
}

#detailTable {
  border-collapse: collapse;
}

#detailTable tr:nth-child(even){background-color: #f2f2f2;}
.dark #detailTable tr:nth-child(even){background-color: #3d4869;}

#detailTable tbody tr:hover {background-color: #ddd;}
.dark #detailTable tbody tr:hover {background-color: #5a6a9a;}

.pl-85{
  padding-left: 8.5rem;
}

.h-74{
  height: 7.4rem;
}

.mt-175{
  margin-top: 1.75rem
}

.bkd-lblue{
  background-color:#72CCFD;
}

.invoice-body{
  background: #edf2f7; 
  height: calc(100vh - 0.75rem);
}

.full-height-page{
  min-height: calc(100% - 0.75rem);
}

.full-page-vm{
  height: calc(100% - 130px);
}


#blocker{
  z-index: 9999;
  background-color: #f8f8f8;
  opacity: 0.6;
  width: 100vw !important;
  height: 100vh !important;
  position: fixed;
  left: 0;
  top: 0;
}

#blocker::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

img.logo{
  width: 80px;
  z-index: 9;
}

img.sidebar-logo{
  z-index: 9;
  max-height: 80px;
  margin: 0 auto;
}

.dark .box-shadow-hover:hover {
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 1));
}

.modal-head {
  width: 100%;
  margin: 0;
  display: flex; /* or inline-flex */
  align-items: center;
  position: relative;
  top: -1rem;
}

.modal-badge {
  color: #264653;
  background-color: #ffffff;
  border: 1px solid #264653;
  outline: 3px solid #ffffff;
  border-radius: 0.5rem;
  min-height: 34px;
  min-width: 34px;
  display: flex; /* or inline-flex */
  align-items: center;
  justify-content: center;
}
.modal-badge-danger{
  color: #D32929;
  background-color: #ffffff;
  border: 1px solid #D32929;
}
.modal-badge-warning{
  color: #FBC500;
  background-color: #ffffff;
  border: 1px solid #FBC500;
}
.modal-badge-success{
  color: #91C714;
  background-color: #ffffff;
  border: 1px solid #91C714;
}

.modal-close {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover{
  background-color: #D32929;
  color: #ffffff;
}

.breadcrumb>div>a:hover{
  text-decoration: underline;
}

.toggle {
  border-radius: 16px;
  box-shadow: inset 2px 2px rgba(0, 0, 0, 0.2);
  display: inline-block;
  height: 16px;
  position: relative;
  transition: all 0.4s ease;
  width: 30px;
}
.toggle:after {
  background: #ddd;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  box-shadow: inset 2px 2px rgba(255, 255, 255, 0.6), inset -1px -1px rgba(0, 0, 0, 0.1);
  content: "";
  height: 16px;
  position: absolute;
  top: 0px;
  transition: all 0.3s ease;
  width: 16px;
}
.toggle.toggle-off {
  background: #E76F51;
}
.toggle.toggle-off:after {
  left: 0px;
}
.toggle.toggle-on {
  background: #457b9d;
}
.toggle.toggle-on:after {
  left: calc(100% - 16px);
}

.cke_chrome, .cke_inner{
  border-radius: 8px;
  border-width: 2px;
}

.cke_top{
  border-width: 2px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.cke_bottom{
  border-width: 2px;
  border-radius: 0px 0px 8px 8px
}

.form-group:has(input[ng-required="true"]) .input-title::after{
  content: " *";
  margin-left: 0.2rem;
}