.spinner {
  margin: 20px auto;
  width: 200px;
  height: 100vh;
  background: transparent;
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
}

.spinner .circle {
  animation: spinners linear infinite;
  position: absolute;
  border: 5px solid transparent;
  border-top-color: #f00;
  border-radius: 50%;
}

.spinner .one {
  width: 50px;
  height: 50px;
  border-top-color: #8f3b76;
  animation-duration: 0.85s;
}

.spinner .two {
  width: 70px;
  height: 70px;
  border-top-color: #c7417b;
  animation-duration: 0.95s;
}

.spinner .three {
  width: 100px;
  height: 100px;
  border-top-color: #f5487f;
  animation-duration: 1.05s;
}

@keyframes spinners {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

div#show {
  margin: 50px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}

.patient-list {
  padding: 0 !important;
  border-collapse: collapse;
}

.patient-list thead {
  background: #274573;
  color: #fff;
}

.patient-list thead th {
  font-size: 20px;
  position: sticky;
  top: 0;
  background: #274573;
}

.patient-list tbody td {
  font-size: 18px;
}

.patient-list th,
td {
  padding: 15px 25px;
  font-weight: 400;
}

.patient-list tbody tr:nth-child(2n) {
  background: #f6f6f6;
}

.non-clinic-content-wrapper {
  padding: 0 !important;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15) !important;
  border-radius: 5px !important;
  overflow: hidden;
}

.patient-list-mobile {
  display: none;
  background: #fff;
}

.mobile-data-table {
  padding: 15px 0;
}

.mobile-data-table > .mob-row {
  display: flex;
  border-bottom: 1px solid #274573;
  padding: 5px 10px;
  margin: 0 15px;
}

.mobile-data-table > .mob-row:first-child {
  background: #ce1b1b;
  border-top: 1px solid #fff;
}

.mobile-data-table > .mob-row > .mob-col {
  width: 50%;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.mobile-data-table > .mob-row > .name-column {
  color: #fff;
}
div#show-cl,div#show-customer-view {
  margin: 50px 0;
  border-radius: 10px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}
.p_highlighted_time {
  color: #ce1b1b;
}

.quote-admin-help{
  padding: 10px 25px;
  background: #274573;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.quote-admin-help>h4{
  font-size: 18px;
  line-height: 1.3em;
  font-style: italic;
  margin: 0;
}


@media (max-width: 600px) {
  div#show {
    margin: 30px 0;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0);
  }

  .patient-list-mobile {
    display: block;
  }

  .patient-list {
    display: none;
  }
  table.patient-list.cl-list {
    display: table;
  }

  div#show-cl,div#show-customer-view {
    margin: 30px 0;
    border-radius: 0px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0);
  }

  table.patient-list.cl-list tbody td {
    font-size: 14px;
    padding: 12px;
  }
  table.patient-list.cl-list thead th {
    font-size: 16px;
  }
  table.patient-list.cl-list th,
  td {
    padding: 10px 12px;
    font-weight: 400;
  }

  .quote-admin-help{
    padding: 10px;
  }

  .quote-admin-help>h4{
    font-size: 14px;
  }
}
