* {
  outline: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  color: #788089;
}

header {
  background-color: #00b8ff;
  padding: 20px 0;
}

ul {
  list-style: none;
}

input,
select,
textarea {
  border: 1px solid #dee2e6;
  padding: 10px;
  border-radius: 4px;
  color: #6d767e;
}

label {
  font-size: 1.4rem;
}

table {
  border-collapse: collapse;
  font-size: 1.4rem;
  width: 100%;
  text-align: left;
}

.table-container table thead {
  background-color: #d7f4ff;
}

th,
td {
  padding: 20px;
}

td {
  border-bottom: 1px solid #dee2e6;
}

.inline-right {
  text-align: right !important;
}

.mr10 {
  margin-right: 10px;
}

.table-container .action-buttons {
  cursor: pointer;
}

.table-container th {
  cursor: pointer;
}

input.ng-touched.ng-dirty.ng-invalid,
.is-submitted input.ng-invalid {
  border: 1px dashed #da5252;
}

.form-group-v .ng-touched.ng-dirty.ng-invalid .mat-form-field-underline,
.is-submitted .ng-invalid .mat-form-field-underline {
  background-color: #da5252;
}

.cus-container {
  width: 97%;
  margin: 0 auto;
}

.cus-container.header-content {
  display: flex;
  justify-content: space-between;
}

.login-container {
  width: 100%;
  height: 100vh;
  display: flex;
}

.login-image {
  width: 60%;
  height: 100vh;
  background-image: url(../images/dentist.png);
  background-position: center;
  background-size: cover;
}

.login-form {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-form p {
  font-size: 1.4rem;
  font-weight: 300;
}

.login-form h3 {
  font-size: 2.4rem;
  font-weight: normal;
}

.login-form .form-block {
  width: 70%;
  margin: 0.5rem 0;
}

.form-block input {
  width: 100%;
  padding: 10px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

.form-block ::placeholder {
  /* Firefox, Chrome, Opera */
  color: #dee2e6;
}

.form-block :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #dee2e6;
}

.form-block ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #dee2e6;
}

.login-form button {
  width: 100%;
  padding: 10px;
  background-color: #00b8ff;
  border: 1px solid transparent;
  border-radius: 4px;
  color: white;
  cursor: pointer;
}

.login-form__heading {
  text-align: center;
  margin: 2rem 0 2rem;
}

.profile {
  display: flex;
  align-items: center;
  color: white;
  cursor: pointer;
}

.profile * {
  display: block;
}

.profile span {
  margin-right: 10px;
}

.profile img {
  width: 35px;
  border-radius: 100px;
  object-fit: cover;
}

.button-standard {
  border: 1px solid transparent;
  background: #00b8ff;
  border-radius: 4px;
  padding: 10px 15px;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

.button-square {
  background-color: #d7f4ff;
  padding: 10px 15px;
  border-radius: 4px;
  font-family: monospace;
  margin: 0 10px;
  cursor: pointer;
}

.table-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #dee2e6;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.w280 {
  width: 28rem !important;
}

.filter-actions .mat-form-field-infix {
  border-top: 0 solid transparent !important;
  padding: 0.9rem !important;
}

.filter-actions .mat-form-field-appearance-legacy .mat-form-field-underline {
  bottom: 0 !important;
}

.filter-actions .mat-form-field-wrapper {
  padding-bottom: 0 !important;
}

.flex-group-between {
  display: flex;
  justify-content: space-between;
}

input#search {
  background: #d7f4ff;
  border: 1px solid #d7f4ff;
}

input#filter {
  width: 500px;
}

input#entries {
  width: 70px;
}

span.sr-only {
  display: none;
}

.pagination .page-item:first-child:hover {
  border-left: 1px solid #00b8ff;
}

.pagination .page-item:hover > a,
.pagination .page-item.active > a {
  color: white;
}
.pagination .page-item:hover,
.pagination .page-item.active {
  background-color: #00b8ff;
  border: 1px solid #00b8ff;
  border-left: none;
}

.pagination .page-item.disabled-item:hover {
  border-color: #dee2e6 !important;
  color: #788089;
}

.pagination .page-item > a {
  color: #788089;
  text-decoration: none;
}
.pagination .page-item:first-child {
  border-left: 1px solid #dee2e6;
}
.pagination .page-item {
  float: left;
  padding: 10px 15px;
  font-size: 1.4rem;
  border: 1px solid #dee2e6;
  border-left: none;
  cursor: pointer;
}

.table-footer {
  margin: 25px 0;
}

.invalid-feedback {
  font-size: 1.4rem;
  color: #e87171;
  font-weight: bold;
}

.alert-danger,
.alert-success {
  color: white;
  padding: 10px 25px;
  width: 100%;
  font-size: 1.4rem;
  border-radius: 3px;
}

.alert-warning {
  background-color: #fbfb98;
}

.alert-danger {
  background-color: #ef8d8d;
}

.alert-success {
  background-color: #84b984;
}

.warning-bg {
  background-color: #fbfb98;
}

.success-bg {
  background-color: #84b984;
}

.danger-bg {
  background-color: #ef8d8d;
}

.disabled-item {
  opacity: 0.5;
  cursor: initial;
}

.payment-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

.modal-overlay {
  display: block; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
.modal-view {
  position: fixed;
  background: white;
  border: 1px solid #dbdbdb;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 50rem;
  padding: 2rem;
  z-index: 999;
}

.modal-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dbdbdb;
}

.modal-footer {
  clear: both;
  display: flex;
  justify-content: flex-end;
}

.blue-container {
  padding: 10px;
  background: #d7f4ff;
  border-radius: 3px;
  margin: 0.5rem 0 1rem;
}

.btn {
  cursor: pointer;
  border: 1px solid transparent;
  color: #4f5256;
  padding: 0.7rem 2rem;
}

.btn-text {
  background: none;
}

.btn-normal {
  background: #dbdbdb;
  border-radius: 3px;
}

.btn-blue {
  background: #00b8ff;
  color: white;
  border-radius: 3px;
}

.mr30 {
  margin-right: 3rem;
}

.mb20 {
  margin-bottom: 2rem;
}

.form-group-v input {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.7rem;
}

.form-group-v input[type="date"] {
  padding: 0.5rem;
}

.mat-input-element {
  margin: 0 !important;
  padding: 0 !important;
}

.mat-form-field-infix {
  padding: 0 !important;
}

.form-group-v label {
  display: block;
}

.form-group-h input[type="radio"] {
  margin: 0;
  margin-right: 1rem;
  width: 1.6rem;
}

.form-group-h {
  display: inline-flex;
  align-items: center;
}

.pointer {
  cursor: pointer;
}

.block {
  position: relative;
  min-height: 1px;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.hidden {
  visibility: hidden;
  height: 0;
}

.col-1-of-1,
.col-1-of-2 {
  float: left;
  padding: 0 1.5rem;
}

.col-1-of-2 {
  width: 50%;
}

.col-1-of-1 {
  width: 100%;
}

/* .popover-body ul li:first-child {
  border-bottom: 1px solid #dbdbdb;
} */

.popover-body ul li:hover {
  background: #eee;
}
.popover-body ul li {
  margin: 5px;
  padding: 10px;
  cursor: pointer;
}
.popover-body {
  border: 1px solid #dbdbdb;
  text-align: left;
  border-radius: 3px;
  background: white;
}

.table-heading .lds-ellipsis {
  width: auto;
  height: 1.3rem;
}

.table-heading .lds-ellipsis div {
  position: absolute;
  top: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #00b8ff;
  /* animation-timing-function: cubic-bezier(0, 1, 1, 0); */
}

@media print {
  .modal-view {
    top: 20%;
    transform: scale(2);
  }

  .modal-heading, .modal-footer {
    display: none;
  }
}