﻿.list-loading-wrapper {
  background: rgba(230, 230, 230, 0.37);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.list-loading-wrapper .list-loading {
  border-radius: 12px;
  box-shadow: 0 0 35px 1px #ddd;
  position: absolute;
  left: calc(50% - 110px);
  top: 75px;
  text-align: center;
  width: 220px;
  height: 128px;
  opacity: 0.8;
  padding-top: 100px;
}

.dental-clinics-list {
  margin-bottom: 2rem;
  padding: 1.3rem;
  border-radius: var(--radius-16);
  background: #ffffff;
  -webkit-border-radius: var(--radius-16);
  -moz-border-radius: var(--radius-16);
  -ms-border-radius: var(--radius-16);
  -o-border-radius: var(--radius-16);
}

.dental-clinics-list .table-responsive {
  overflow: auto;
}

.dental-clinics-list .table-responsive::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.dental-clinics-list .table-responsive::-webkit-scrollbar-track {
  background: #eee;
}

.dental-clinics-list .table-responsive::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 4px;
}

.dental-clinics-list .table-responsive .table {
  border-collapse: separate;
  border-spacing: 0 0.64rem;
  width: 100%;
  border: none;
  -table-layout: fixed;
}

.dental-clinics-list .table-responsive .table tbody {
  width: 100%;
}

.dental-clinics-list .table-responsive .table tr {
  position: relative;
}

.dental-clinics-list .table-responsive .table tr td,
.dental-clinics-list .table-responsive .table tr th {
  padding: 0.8em 0.57rem;
  font-size: 0.87rem;
  list-style: none;
  -text-align: center;
  text-align: right;
  white-space: nowrap;
}

.dental-clinics-list .table-responsive .table tr td:last-child,
.dental-clinics-list .table-responsive .table tr th:last-child {
  width: 7rem;
}

.dental-clinics-list .table-responsive .table tr th {
  font-weight: 700;
}

.dental-clinics-list .table-responsive .table tr td {
  padding: 2rem 0.57rem 1.4rem;
  border-top: 1px solid rgba(194, 194, 194, 0.5);
}

.dental-clinics-list .row-with-desc td {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.dental-clinics-list .row-with-desc.is-open td {
  padding-bottom: 2.8rem !important;
}

.dental-clinics-list .desc-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  border-radius: 21.5px 21.5px 0 0;
  -webkit-border-radius: 21.5px 21.5px 0 0;
  cursor: pointer;
  -moz-border-radius: 21.5px 21.5px 0 0;
  -ms-border-radius: 21.5px 21.5px 0 0;
  -o-border-radius: 21.5px 21.5px 0 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.dental-clinics-list .desc-toggle.is-open {
  background: #fff8e6;
  height: 68px;
}

.dental-clinics-list .desc-toggle svg.info {
  display: block;
  fill: var(--accent-color3);
  width: 1.6rem;
  height: 1.6rem;
}

.dental-clinics-list .desc-toggle svg.arrow {
  display: none;
  fill: var(--blood-red);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgb(105 0 0 / 40%);
}

.dental-clinics-list .desc-toggle.is-open svg.info {
  display: none;
}

.dental-clinics-list .desc-toggle.is-open svg.arrow {
  display: block;
}

.dental-clinics-list .row-with-desc .tooltip-box {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
  width: 100%;
  border-radius: var(--radius-4);
  background: #fff8e6;
  font-weight: bold;
  -webkit-border-radius: var(--radius-4);
  -moz-border-radius: var(--radius-4);
  -ms-border-radius: var(--radius-4);
  -o-border-radius: var(--radius-4);
  padding: 0.57rem;
  z-index: 1;
}

.dental-clinics-list .row-with-desc .tooltip-box svg {
  display: inline-block;
  vertical-align: middle;
  width: 1.7rem;
  height: 1.7rem;
  margin-left: 0.57rem;
  fill: var(--accent-color3);
}

.dental-clinics-list .table-responsive .table tr td:last-child .d-flex {
  justify-content: center;
}

.dental-clinics-list .add-request-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: auto;
}

.dental-clinics-list .add-request-btn svg {
  display: block;
  width: 1.71rem;
  height: 1.71rem;
  fill: var(--system-green-5);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.ellipsis {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dental-clinics-list .add-request-btn.is-open svg {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.request-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* .modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
} */

.request-modal .gray-wrapper .col:first-child {
  border-left: solid 1px rgba(194, 194, 194, 0.5);
}

.request-modal .request-wrapper .title-box {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.57rem;
  margin-bottom: 1rem;
}

.request-modal .request-wrapper .title-box svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: var(--system-green-5);
}

.request-modal .request-wrapper .custom-radio input[type="radio"] {
  display: none;
}

.request-modal .request-wrapper .custom-radio {
  display: inline-block;
  position: relative;
  padding-right: 2.2rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-bg-dark-4);
  font-weight: bold;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.request-modal .request-wrapper .custom-radio .radio-outer-circle {
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  height: 24px;
  width: 24px;
  background-color: transparent;
  border: 1px solid var(--accent-color2);
  border-radius: 50%;
  box-sizing: border-box;
}

.request-modal
  .request-wrapper
  .custom-radio
  input[type="radio"]:checked
  ~ .radio-outer-circle {
  border-color: var(--accent-color2);
}

.request-modal .request-wrapper .custom-radio .radio-inner-circle {
  position: absolute;
  top: calc(50% - 9px);
  right: 3px;
  width: 18px;
  height: 18px;
  background-color: purple;
  border-radius: 50%;
  display: none;
}

.request-modal
  .request-wrapper
  .custom-radio
  input[type="radio"]:checked
  ~ .radio-inner-circle {
  display: block;
}

.request-modal .request-wrapper textarea {
  width: 100%;
  height: 8rem;
  padding: 1rem;
  border-radius: var(--radius-12);
  border: 1px solid var(--light-1);
  -webkit-border-radius: var(--radius-12);
  -moz-border-radius: var(--radius-12);
  -ms-border-radius: var(--radius-12);
  -o-border-radius: var(--radius-12);
  resize: none;
  outline: none !important;
}

.request-modal .btns-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 0.57rem;
}

.request-modal .btns-wrapper .btn {
  padding: 0.4rem 0.57rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-4);
  border: 1px solid rgba(194, 194, 194, 0.5);
  -webkit-border-radius: var(--radius-4);
  -moz-border-radius: var(--radius-4);
  -ms-border-radius: var(--radius-4);
  -o-border-radius: var(--radius-4);
  cursor: pointer;
}

.request-modal .btns-wrapper .btn.outline {
  color: var(--dark-3);
}

.request-modal .btns-wrapper .btn.success {
  color: #fff;
  background: var(--system-green-5);
}

.success-modal .modal-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.57rem;
}

.success-modal .modal-content svg,
.success-modal .modal-content img {
  width: 5.5rem;
  margin: auto;
  display: block;
  margin-bottom: 1.2rem;
}

.success-modal .modal-content .title {
  display: block;
  font-size: 1.2rem;
  color: #000;
}

.success-modal .modal-content .desc {
  display: block;
  font-size: 1.07rem;
  width: 30rem;
  font-weight: 400;
  max-width: 100%;
  text-align: center;
  text-align-last: center;
}

.success-modal .modal-content .link {
  margin-top: 2rem;
  color: #4179f0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .request-modal .gray-wrapper .col:first-child {
    border-left: none;
    border-bottom: solid 1px rgba(194, 194, 194, 0.5);
  }

  .dental-clinics-list .table-responsive .table tr td,
  .dental-clinics-list .table-responsive .table tr th {
    width: 10rem;
  }
}
