#calendars {
  display: flex;
  flex-direction: column;
}

.tcf-search-container-outer {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.tcf-search-container-outer .tcf-search-container {
  width: auto;
  flex: 1;
  margin-bottom: 0;
}
.tcf-search-container-outer .custom-button {
  width: 200px;
  margin: 0 0 0 20px !important;
}

.cancelModal {
  z-index: 1051;
}

#closeOffModal .label {
  text-align: left;
}
#closeOffModal .custom-button {
  height: 35px;
  width: 230px;
  margin: 10px auto;
  border-radius: 4px;
}

.tcf-search-container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  border: 2px solid #ccc;
  border-radius: 20px;
  padding: 8px 10px;
  margin-bottom: 10px;
}
.tcf-search-container.close-off-search-container {
  padding: 3px 10px;
  margin-top: 10px;
}
.tcf-search-container svg {
  height: 20px;
  width: 20px;
  margin-right: 10px;
}
.tcf-search-container svg * {
  fill: #ccc;
}
.tcf-search-container input {
  flex-grow: 1;
  border: none;
  outline: none;
  background-color: transparent;
}

.tcf-patient-modal .modal-content {
  border-radius: 15px;
  overflow: hidden;
}
.tcf-patient-modal .modal-content button.close {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .tcf-patient-modal .modal-content button.close {
    color: #fff;
    opacity: 1;
  }
}
.tcf-patient-modal .modal-body {
  padding: 0;
  height: 90vh;
  display: flex;
  overflow-y: auto;
}
.tcf-patient-modal .modal-body.summary {
  flex-wrap: wrap;
}
.tcf-patient-modal .modal-body .tcf-patient-modal-header {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.tcf-patient-modal .modal-body .tcf-patient-modal-header.full-modal-header {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 15px;
  width: 100%;
}
.tcf-patient-modal .modal-body .datas {
  height: 80%;
  overflow: scroll;
}
.tcf-patient-modal .modal-body .tcf-modal-col {
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
}
.tcf-patient-modal .modal-body .tcf-patient-modal-left-col {
  background-color: var(--primary-color);
  width: 30%;
  border-radius: 15px;
  height: 100%;
  overflow-y: auto;
}
.tcf-patient-modal .modal-body .tcf-patient-modal-left-col .tcf-patient-modal-header {
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.tcf-patient-modal .modal-body .tcf-patient-modal-left-col .tcf-reservation-datas {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tcf-patient-modal .modal-body .tcf-patient-modal-left-col .tcf-reservation-datas .tcf-reservation-box {
  width: 95%;
  margin: 0 auto 20px;
  background-color: #146cb4;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
}
.tcf-patient-modal .modal-body .tcf-patient-modal-left-col .tcf-reservation-datas .tcf-reservation-box .tcf-reservation-data {
  margin-bottom: 5px;
}
.tcf-patient-modal .modal-body .tcf-patient-modal-left-col .tcf-reservation-datas .tcf-reservation-box .bold {
  font-weight: 700;
}
.tcf-patient-modal .modal-body .tcf-patient-modal-right-col {
  width: 70%;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
.tcf-patient-modal .modal-body .tcf-patient-modal-right-col .tcf-patient-modal-header {
  color: var(--primary-color);
}
@media screen and (max-width: 1200px) {
  .tcf-patient-modal .modal-body .tcf-patient-modal-right-col {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .tcf-patient-modal .modal-body .tcf-patient-modal-left-col,
.tcf-patient-modal .modal-body .tcf-patient-modal-right-col {
    width: 100%;
  }
  .tcf-patient-modal .modal-body button.close {
    color: #fff;
    opacity: 1;
  }
}
.tcf-patient-modal .modal-body .tcf-patient-col-headers {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.tcf-patient-modal .modal-body .tcf-patient-col-headers span {
  width: 19%;
  font-weight: 700;
  font-size: 18px;
}
.tcf-patient-modal .modal-body .tcf-patient-results {
  flex: 1;
  overflow: hidden;
}
.tcf-patient-modal .modal-body .tcf-patient-results .tcf-patient-results-outer {
  height: 100%;
  overflow-y: auto;
}
.tcf-patient-modal .modal-body .tcf-patient-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
}
.tcf-patient-modal .modal-body .tcf-patient-result span {
  width: 19%;
  color: #333;
}
.tcf-patient-modal .modal-body .tcf-patient-result .tcf-patient-edit {
  font-weight: 700;
  color: var(--primary-color);
}
.tcf-patient-modal .modal-body .tcf-patient-result .tcf-patient-edit:hover {
  cursor: pointer;
  text-decoration: underline;
}
.tcf-patient-modal .modal-body .tcf-patient-result:nth-child(2n) {
  background-color: #eee;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.tcf-patient-modal .modal-body .tcf-patient-result:hover {
  cursor: pointer;
  background-color: #ccc;
}
.tcf-patient-modal .modal-body .tcf-reservation-summary :not(.tcf-patient-modal-header) {
  text-align: left;
}
.tcf-patient-modal .modal-body .tcf-reservation-summary .tcf-patient-modal-subheader {
  font-weight: 700;
  margin-top: 15px;
  color: var(--primary-color);
}
.tcf-patient-modal .modal-body .tcf-reservation-summary .tcf-data-title {
  color: #999;
  text-align: left;
}
.tcf-patient-modal .modal-body .tcf-reservation-summary .tcf-data {
  color: var(--primary-color);
  text-align: right;
}
.tcf-patient-modal .modal-body .tcf-reservation-summary .tcf-patient-summary {
  display: flex;
  justify-content: space-between;
  width: 50%;
  margin-bottom: 5px;
}
.tcf-patient-modal .modal-body .tcf-reservation-summary .tcf-patient-summary span {
  width: 45%;
  font-weight: 700;
}
.tcf-patient-modal .modal-body .tcf-reservation-comment {
  outline: none;
  border-radius: 10px;
  color: #555;
  margin-bottom: 20px;
}
.tcf-patient-modal .modal-body .tcf-reservation-setting {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.tcf-patient-modal .modal-body .tcf-reservation-setting label {
  width: 40%;
  font-weight: 700;
  color: #999;
  margin-bottom: 0;
}
.tcf-patient-modal .modal-body .tcf-reservation-setting label:hover {
  cursor: pointer;
}
.tcf-patient-modal .modal-body .tcf-reservation-setting .tcf-data {
  font-weight: 700;
}
.tcf-patient-modal .modal-body .tcf-reservation-setting .custom-tooltip {
  color: var(--primary-color);
  margin-bottom: 0;
}
.tcf-patient-modal .modal-body .custom-button {
  margin: 20px auto 0;
  text-transform: uppercase;
  line-height: 40px;
}
.tcf-patient-modal .modal-body .button-container {
  display: flex;
  justify-content: space-between;
}
.tcf-patient-modal .modal-body .tcf-modal-step-back {
  display: inline-block;
  margin: 10px auto 0;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
}
.tcf-patient-modal .modal-body .tcf-modal-step-back:hover {
  cursor: pointer;
  text-decoration: underline;
}
.tcf-patient-modal .modal-body .tcf-no-patient-found {
  margin-top: 50px;
  font-size: 20px;
  font-weight: 700;
}
.tcf-patient-modal .modal-body.quick-reservation, .tcf-patient-modal .modal-body.full-reservation {
  flex-direction: column;
  padding: 20px 15px;
}
.tcf-patient-modal .modal-body.quick-reservation .col, .tcf-patient-modal .modal-body.full-reservation .col {
  margin-bottom: 20px;
}
.tcf-patient-modal .modal-body.quick-reservation .custom-button, .tcf-patient-modal .modal-body.full-reservation .custom-button {
  margin-top: auto;
}
.tcf-patient-modal .modal-body .tcf-input-container {
  text-align: left;
}
.tcf-patient-modal .modal-body .tcf-input-container.required .tcf-input-label::after {
  content: " *";
}
.tcf-patient-modal .modal-body .tcf-input-container.required input {
  border: 2px solid red;
}
.tcf-patient-modal .modal-body .tcf-input-container.required input:valid {
  border: none;
}
.tcf-patient-modal .modal-body #personal-last-name,
.tcf-patient-modal .modal-body #personal-first-name,
.tcf-patient-modal .modal-body #personal-birth-place,
.tcf-patient-modal .modal-body #personal-mothers-name {
  text-transform: capitalize;
}
.tcf-patient-modal .modal-body .tcf-input-label {
  color: #555;
  margin-bottom: 10px;
}
.tcf-patient-modal .modal-body .tcf-input {
  width: 100%;
  background-color: #eee;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  height: 40px;
}
.tcf-patient-modal .modal-body .custom-check-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tcf-patient-modal .modal-body .custom-check {
  width: 110px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #eee;
  color: #333;
  border-radius: 6px;
}
.tcf-patient-modal .modal-body .custom-check.bordered {
  border: 2px solid red;
}
.tcf-patient-modal .modal-body #insurers .custom-check-container {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.tcf-patient-modal .modal-body #insurers .custom-check {
  width: 160px;
  text-align: center;
  margin-bottom: 15px;
}
.tcf-patient-modal .modal-body .custom-check.selected {
  background-color: var(--primary-color);
  color: #fff;
}
.tcf-patient-modal .modal-body .custom-check:hover {
  cursor: pointer;
}
.tcf-patient-modal .modal-body .custom-check:not(.selected):hover {
  background-color: rgba(47, 157, 248, 0.6);
}
.tcf-patient-modal .modal-body .tcf-checkbox-container {
  display: flex;
  align-items: center;
}
.tcf-patient-modal .modal-body .tcf-checkbox-container label {
  margin-bottom: 0;
  margin-right: 10px;
}
.tcf-patient-modal .modal-body .tcf-checkbox-container label:hover {
  cursor: pointer;
}
.tcf-patient-modal .modal-body .tcf-checkbox-container.centered {
  margin-top: 10px;
  justify-content: center;
}
.tcf-patient-modal .modal-body .checkbox-col .tcf-checkbox-container {
  margin-top: 40px;
}
.tcf-patient-modal .modal-body .tcf-section-header {
  color: #999;
  font-size: 18px;
}
.tcf-patient-modal .modal-body.full-reservation {
  padding-left: 70px;
  padding-right: 70px;
}
.tcf-patient-modal .modal-body section {
  padding: 20px 30px;
  border: 2px solid #ccc;
  margin-bottom: 20px;
}
.tcf-patient-modal textarea {
  min-height: 50px;
}
.tcf-patient-modal .files-container,
.tcf-patient-modal .files-container * {
  text-align: center !important;
}
@media screen and (max-width: 1200px) {
  .tcf-patient-modal .modal-dialog {
    max-width: 90vw;
  }
  .tcf-patient-modal .modal-body.fill-reservation {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .tcf-patient-modal .tcf-patient-col-headers span:nth-child(3),
.tcf-patient-modal .tcf-patient-result span:nth-child(3) {
    display: none;
  }
  .tcf-patient-modal .modal-body.full-reservation,
.tcf-patient-modal .modal-body.quick-reservation {
    padding-left: 20px;
    padding-right: 20px;
  }
  .tcf-patient-modal .modal-body section {
    padding: 10px 0;
  }
  .tcf-patient-modal .modal-body .checkbox-col .tcf-checkbox-container {
    margin-top: -10px;
    margin-bottom: 10px;
  }
  .tcf-patient-modal .modal-body .tcf-patient-modal-left-col .tcf-reservation-datas .tcf-reservation-data {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .tcf-patient-modal .modal-body .tcf-reservation-setting label {
    width: 55%;
  }
}
@media screen and (max-width: 575px) {
  .tcf-patient-modal .modal-dialog {
    max-width: unset;
  }
  .tcf-patient-modal .modal-body.full-reservation {
    padding-left: 20px;
    padding-right: 20px;
  }
  .tcf-patient-modal .modal-body .tcf-reservation-summary .tcf-patient-summary {
    width: 70%;
  }
  .tcf-patient-modal .modal-body .tcf-reservation-summary .tcf-patient-summary span {
    width: unset;
  }
  .tcf-patient-modal .modal-body .tcf-reservation-setting {
    width: 100%;
  }
}

#data-table-appointments .delete-button {
  color: #fff;
}

.tcf-empty-text {
  margin-top: 200px;
  text-align: center;
  font-size: 30px;
  padding: 0 20px;
}

.two-col-filter {
  width: 100%;
  background-color: #fff;
  position: sticky;
  top: 70px;
}
.two-col-filter .buttons-container {
  display: flex;
  justify-content: space-evenly;
}
.two-col-filter .buttons-container .custom-button {
  width: 240px;
  height: 32px;
  border-radius: 6px;
}
.two-col-filter .tcf-search-container {
  padding: 4px 10px;
}
.two-col-filter .tcf-search-container input {
  font-size: 14px;
}
.two-col-filter .tcf-reset-filter {
  font-size: 13px;
  margin-bottom: 0;
  margin-left: -15px;
}
.two-col-filter .tcf-not-match {
  display: none;
}
.two-col-filter .tcf-phase-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 70px);
  text-align: center;
  position: sticky;
  top: 70px;
}
.two-col-filter .tcf-phase-container .reset-filter-col {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.two-col-filter .tcf-phase-container .tcf-reset-filter {
  color: var(--primary-color);
}
.two-col-filter .tcf-phase-container .tcf-calendar-buttons {
  display: flex;
  position: relative;
}
.two-col-filter .tcf-phase-container .custom-button {
  border-radius: 4px;
}
.two-col-filter .tcf-phase-container .tcf-start-search,
.two-col-filter .tcf-phase-container .tcf-reorder {
  font-weight: 400;
  font-size: 16px;
  margin: 10px auto;
  height: 32px;
}
.two-col-filter .tcf-phase-container .tcf-reorder {
  width: auto;
  padding: 0 20px;
  position: absolute;
  top: 0;
  right: 0;
}
.two-col-filter .tcf-phase-container .tcf-reorder svg {
  margin-top: -5px;
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}
.two-col-filter .tcf-phase-container .tcf-reorder.disabled {
  background-color: #bbb;
  pointer-events: none;
  color: #fff;
  border-color: #fff;
}
.two-col-filter .tcf-phase-container .tcf-reorder.disabled svg {
  fill: #fff;
}
.two-col-filter .tcf-phase-container .tcf-start-search.disabled {
  background-color: #bbb;
  pointer-events: none;
}
.two-col-filter .tcf-phase-container .tcf-reset-filter:hover,
.two-col-filter .tcf-phase-container .tcf-start-search:hover {
  cursor: pointer;
  text-decoration: underline;
}
.two-col-filter .tcf-phase-container .tcf-qualification-doctor-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.two-col-filter .tcf-phase-container .tcf-qualification-doctor-container .row {
  height: 100%;
}
.two-col-filter .tcf-phase-container .tcf-qualification-doctor-container .col {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.two-col-filter .tcf-phase-container .tcf-qualification-doctor-container .tcf-qualification-container,
.two-col-filter .tcf-phase-container .tcf-qualification-doctor-container .tcf-doctor-container {
  border-right: 1px solid #ccc;
}
.two-col-filter .tcf-phase-container .tcf-qualification-doctor-container .tcf-qualification-container,
.two-col-filter .tcf-phase-container .tcf-qualification-doctor-container .tcf-doctor-container,
.two-col-filter .tcf-phase-container .tcf-qualification-doctor-container .tcf-specializations-container {
  text-align: left;
}
.two-col-filter .tcf-phase-container .tcf-phase {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 0 20px;
}
.two-col-filter .tcf-phase-container .tcf-phase-1 {
  width: 100%;
  height: 90%;
}
.two-col-filter .tcf-phase-container .tcf-phase-2 {
  width: 40%;
}
.two-col-filter .tcf-phase-container .tcf-phase-2 .tcf-col-header {
  margin-top: 40px;
}
.two-col-filter .tcf-phase-container .tcf-find-appointments-container {
  border-top: 1px solid #ccc;
  height: 10%;
  width: 100%;
  padding: 10px 20px;
}
.two-col-filter .tcf-phase-container .tcf-find-appointments-container .tcf-col-header {
  text-align: left;
}
.two-col-filter .tcf-phase-container .tcf-find-appointments-container .tcf-search-container-outer {
  margin-bottom: 10px;
}
.two-col-filter .tcf-phase-container .tcf-find-appointments-container #show-all-appointments {
  margin: 0 auto;
  color: var(--primary-color);
}
.two-col-filter .tcf-phase-container .tcf-find-appointments-container #show-all-appointments:hover {
  cursor: pointer;
  text-decoration: underline;
}
.two-col-filter .tcf-phase-container .tcf-col-header {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}
.two-col-filter .tcf-phase-container .tcf-col-element {
  margin-bottom: 10px;
}
.two-col-filter .tcf-phase-container .tcf-col-element:hover {
  cursor: pointer;
}
.two-col-filter .tcf-phase-container .tcf-col-element:not(.selected):hover {
  cursor: pointer;
  background-color: rgba(47, 157, 248, 0.6);
  color: #fff;
}
.two-col-filter .tcf-phase-container .tcf-col-element.selected {
  background-color: var(--primary-color);
  color: #fff;
}
.two-col-filter .tcf-phase-container .tcf-col-element.filter-hidden {
  display: none;
}
.two-col-filter .tcf-phase-container .tcf-elements-container {
  font-size: 14px;
  overflow-y: auto;
}

.loader-ellips {
  font-size: 14px;
  /* change size here */
  position: relative;
  width: 4em;
  height: 1em;
  margin: 40px auto;
}

.loader-ellips__dot {
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: #555;
  /* change color here */
  position: absolute;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
  left: 0;
}

.loader-ellips__dot:nth-child(3) {
  left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
  left: 3em;
}

@keyframes reveal {
  from {
    transform: scale(0.001);
  }
  to {
    transform: scale(1);
  }
}
@keyframes slide {
  to {
    transform: translateX(1.5em);
  }
}
.loader-ellips__dot:nth-child(1) {
  animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
  animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
  animation-name: reveal;
  animation-direction: reverse;
}

.page-load-status {
  display: none;
}

.selected-specialities-container {
  position: sticky;
  top: 80px;
  z-index: 101;
}

.tcf-instiution-select-container {
  margin-bottom: 10px;
}

.mc-institutions-container {
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
}

.mc-institution-element-container {
  display: flex;
  align-items: center;
  margin-right: 30px;
  margin-top: 20px;
}

.mc-institution-element-container:hover {
  cursor: pointer;
}

.mc-institution-element-circle {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.mc-institution-element-container:not(.selected) .mc-institution-element-circle {
  background: transparent !important;
}

.appointmentsModal .modal-dialog {
  max-width: 95%;
}

.appointmentsModal .modal-body {
  text-align: unset;
}

.custom-card.switch-container-outer {
  padding: 10px;
}

#switch-container,
#switch-container .switch-container-outer,
#switch-container .switch-container {
  height: 100%;
}

#switch-container .switch-container {
  display: flex;
  align-items: center;
}

#switch-container .switch-container > span {
  max-width: 70%;
  text-align: center;
  font-size: 14px;
}

#switch-container .switch-container > span:hover {
  cursor: pointer;
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 20px;
  margin-left: 15px;
  margin-bottom: 0;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider:not(.tns-slider) {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:not(.tns-slider):before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.prevent-scroll {
  overflow: hidden !important;
}

.backdrop {
  background-color: #333;
  opacity: 0.7;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.summary-card {
  width: 100%;
  padding: 10px 15px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.1);
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.summary-card[data-with-closeoff=false] .close-offs,
.summary-card[data-with-closeoff=false] .tab[data-target=close-off],
.summary-card[data-with-closeoff=false] .custom-button.close-off {
  display: none !important;
}
.summary-card[data-with-closeoff=false] .tab[data-target=reservations] {
  width: 100%;
}
.summary-card .tabs {
  display: flex;
  margin: -10px -15px 0px;
}
.summary-card .tabs .tab {
  width: 50%;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding: 5px 0px;
  font-weight: 700;
}
.summary-card .tabs .tab:hover {
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
}
.summary-card .tabs .tab:hover:nth-child(1) {
  border-right: 1px solid #ccc;
  border-top-right-radius: 6px;
}
.summary-card .tabs .tab:hover:nth-child(2) {
  border-left: 1px solid #ccc;
  border-top-left-radius: 6px;
}
.summary-card .tabs .tab.selected {
  background: var(--primary-color);
  color: #fff;
}
.summary-card .tabs .tab.selected:nth-child(1) {
  border-right: 1px solid #ccc;
  border-top-right-radius: 6px;
}
.summary-card .tabs .tab.selected:nth-child(2) {
  border-left: 1px solid #ccc;
  border-top-left-radius: 6px;
}
.summary-card .close-off-card {
  width: 100%;
  background: #eee;
  border-radius: 2px;
  padding: 5px 10px;
  margin-top: 10px;
  border: none;
}
.summary-card .close-off-card .card-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.summary-card .close-off-card .card-header-content:hover {
  cursor: pointer;
}
.summary-card .close-off-card .card-header-content svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.summary-card .close-off-card .card-header-content svg.transformed {
  transform: rotateZ(-180deg);
}
.summary-card .close-off-card .card-header-content .datas {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.summary-card .close-off-card .card-header-content .datas .name-and-date {
  margin-bottom: 0;
}
.summary-card .close-off-card .card-header-content .datas .name-and-date span {
  font-weight: 700;
}
.summary-card .close-off-card .card-body {
  padding: 20px 0 0 0;
}
.summary-card .close-off-card .institutions {
  font-weight: 700;
}
.summary-card .close-off-card .comment {
  font-weight: 300;
}
.summary-card .close-off-card .actions {
  display: flex;
  align-items: center;
}
.summary-card .close-off-card .actions .custom-button {
  height: 32px;
}
.summary-card .summary-card-header {
  display: flex;
  align-items: center;
}
.summary-card .summary-card-header.close-offs {
  display: block;
  max-height: 350px;
  overflow-y: auto;
}
.summary-card .summary-card-header .counter-text {
  font-size: 18px;
  font-weight: 700;
}
.summary-card .summary-card-header .counter {
  margin-left: 20px;
  margin-right: 40px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  font-size: 26px;
}
.summary-card .summary-card-header .action-buttons {
  display: flex;
  flex-direction: column;
  margin-left: auto;
}
.summary-card .summary-card-header .delete-reservations {
  color: red;
}
.summary-card .summary-card-header .toggle-summary-card {
  color: var(--primary-color);
  font-size: 16px;
}
.summary-card .summary-card-header .toggle-summary-card:hover,
.summary-card .summary-card-header .delete-reservations:hover {
  cursor: pointer;
  text-decoration: underline;
}
.summary-card .summary-card-header .custom-button {
  margin: 8px 15px;
  height: 28px;
  border-radius: 4px;
}
.summary-card .summary-card-header .close-off {
  text-align: center;
  height: 24px;
  font-size: 14px;
}
.summary-card.open {
  position: relative;
  z-index: 101;
}
.summary-card:not(.open) .summary-card-details {
  display: none;
}
.summary-card .summary-card-details:first-child {
  margin-top: 30px;
}
.summary-card .summary-card-row {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 15px;
  padding-bottom: 15px;
}
.summary-card .summary-card-row.taken {
  color: red;
}
.summary-card .summary-card-row:not(:last-child) {
  border-bottom: 3px solid #ccc;
}
.summary-card .summary-card-row .reservation-details {
  width: 30%;
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}
.summary-card .summary-card-row .doctor-name {
  width: 15%;
  padding: 0 5px;
}
.summary-card .summary-card-row .institution-name {
  width: 25%;
  padding: 0 5px;
}
.summary-card .summary-card-row .reservation-time {
  width: 25%;
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}
.summary-card .delete-icon {
  width: 30px;
}
.summary-card .delete-icon:hover {
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */
