h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'PT Sans', sans-serif;
  font-weight: 700;
} 

.form-row {
  display: flex;
  flex-wrap: wrap;
}

.form-row > .col,
.form-row > [class*=col-] {
  padding: 8px;
}

label {
  margin-bottom: 0.2rem;
}

select {
  height: 42px;
}

.form-value {
  height: 40px;
}

.tenant-icon {
  margin-right: 10px;
  width: 16px;
}

.btn-primary {
  background-color: #00607F;
  border-color: #00607F;
}

.btn-light {
  background-color: #D4D4D4;
}
.btn-light:hover, .btn-light:active, .btn-light:focus {
  border-color: #D4D4D4;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus  {
  background-color: #1780a3;
  border-color: #00607F;
}

.btn-outline-primary {
  border: 1px solid #00607F;
  color: #00607F;
}

.text-primary {
  color: #00607F!important;
}

.btn-outline-primary:hover {
  background-color: #00607F;
}

input[type='radio']{
  accent-color: #00607F;
}

.table-sm-btn {
  border: 1px solid #757575;
  background-color: #ECECEC;
}

.table-sm-btn:hover {
  color: white;
  background-color: #00607F;
}

input[type='checkbox']{
  width: 14px !important;
  height: 14px !important;
  margin: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  outline: 1px solid gray;
  box-shadow: none;
  font-size: 0.8em;
  text-align: center;
  line-height: 1em;
  background: transparent;
  border-radius: 3px;
  cursor: pointer;
}

input[type='checkbox']:checked {
  background: #00607F;
}

input[type='checkbox']:disabled{
  outline: 1px solid #B5B5B5;
}

input[type='checkbox']:checked:disabled{
  background: #757575;
}

input[type='checkbox']:checked:after {
  content: '✔';
  color: #FFFFFF;
}

input[isReadOnly='true'] {
  background-color: #ECECEC;
}

.dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_paginate {
  position: relative;
  right: 14%;
}

.table-fixed-width .dataTables_wrapper .dataTables_paginate, .table-fixed-width .dataTables_wrapper .dataTables_filter {
  right: 0% !important;
}
/* 
@media (max-width: 1440px) {
  .table-fixed-width .dataTables_wrapper .dataTables_paginate, .table-fixed-width .dataTables_wrapper .dataTables_filter {
    right: 0% !important;
  }
} */

.text-link {
  color: #00607F;
}
.text-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.btn-primary:disabled {
  color: #fff;
  background-color: #757575;
  border-color: #757575;
}

.text-muted-light {
  color: #B5B5B5;
}

.sticky-container {
  width: 600px;
  height: 50px;
  position: fixed;
  right: 8px;
  bottom: 0;
  z-index: 1041;
  transition: height 0.25s ease-in;
}

.sticky-container.active {
  height: 600px;
}

.sticky-container.active .sticky-body {
  height: calc(100% - 50px);
  padding: 16px;
  overflow-y: auto;
}

.sticky-card {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.sticky-header {
  width: 100%;
  height: 50px;
  position: absolute;
  background-color: #00607F;
  padding: 14px 20px;
  color: white;
  right: 0;
  border-radius: 10px 10px 0 0;
}
  
.sticky-body {
  width: 100%;
  height: 0%;
  border-left: 1px solid #CECBCA;
  border-right: 1px solid #CECBCA;
  background-color: white;
  padding: 0px;
  position: absolute; 
  right: 0;
  bottom: 0;
  transition: height 0.25s ease-in;
}

@media (max-width: 1440px) {
  .sticky-container {
    width: 500px;
  }
}

@media (max-width: 576px) {
  .sticky-container {
    width: 100%;
    right: 0;
  }
}
