h1, h2, h3, h4, h5, h6 {
  color: #531253;
}

a {
  color: #531253 !important;
}

.icon {
  border-radius: 10px;
}
.icon img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
}
.icon.vibility img {
  width: 70px;
  height: 70px;
  border-radius: 0;
}

.user-container {
  margin: 1rem 0;
}

.user-img-container {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.user-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.nav li {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9e5e9;
  border-radius: 10px;
  margin: 1rem 0;
}
.nav li.selected {
  background: #531253;
  color: white;
  box-shadow: 0 0.5rem 1rem rgba(60, 21, 90, 0.43) !important;
}
.nav li.selected a {
  color: white !important;
}
.nav li a {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.calendar .day {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
}
.calendar .day:hover {
  box-shadow: 0 0.5rem 1rem rgba(60, 21, 90, 0.13) !important;
  cursor: pointer;
}
.calendar .day.past {
  border: solid #cdcdcd 1px;
  color: #531253;
}
.calendar .day.past svg {
  color: #531253;
}
.calendar .day.current {
  border: solid #531253 1px;
}
.calendar .day.today {
  background: #531253;
  border: solid #531253 1px;
  color: white;
  box-shadow: 0 0.5rem 1rem rgba(60, 21, 90, 0.43) !important;
}
.calendar .day.appt {
  background: #531253;
  border: solid #531253 1px;
  color: white;
}
.calendar .day.appt svg {
  width: 15px;
  height: 15px;
}

.percentage {
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100px;
  margin-top: 2rem;
}
.percentage p {
  margin-left: 5px;
  margin-bottom: 0;
  font-weight: bold;
}
.percentage.up {
  background-color: #bdffbd;
  color: green;
}
.percentage.down {
  background-color: #ffe1e1;
  color: red;
}

.card-icon {
  position: absolute;
  right: 8px;
  bottom: 8px;
  color: #531253;
  background-color: #e9e5e9;
  padding: 8px;
  border-radius: 100px;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lead-container .user-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #531253;
  background: #e9e5e9;
}
.lead-container > .t-card-lite {
  background-color: #e9e5e9 !important;
  box-shadow: none;
}

td div.high {
  background-color: #73d173;
  color: white;
}
td div.medium {
  background-color: #edb943;
  color: black;
}
td div.low {
  background-color: #dd1d1d;
  color: white;
}

.lead-card {
  text-decoration: none;
  border: solid 1px white;
}
.lead-card p {
  font-weight: bold;
  font-size: 14px;
  margin: 0.5rem 0 0 0;
}
.lead-card .lead-quality {
  font-size: 12px;
}
.lead-card .lead-quality.high {
  color: #1ddd1d;
}
.lead-card .lead-quality.medium {
  color: #dda21d;
}
.lead-card .lead-quality.low {
  color: #dd1d1d;
}
.lead-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(60, 21, 90, 0.18) !important;
  cursor: pointer;
  border: solid 1px #531253;
}

.calculate {
  font-size: 11px;
  color: #531253;
  font-weight: bold;
  text-align: center;
  margin: 5px 0 0 0;
  display: block;
  text-decoration: none;
}

.background-image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.user-card-image {
  width: 128px;
  height: 128px;
}
.user-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.user-card .user-card-image {
  width: 128px;
  height: 128px;
}
.user-card .user-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.user-card .card-inset {
  background-color: #e9e5e9 !important;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  margin: 16px 0 0 0;
}
.user-card .card-inset ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.user-card .card-inset ul li {
  border-bottom: 1px solid #d7c2d7;
  padding: 1rem 0;
  color: #531253;
  font-size: 14px;
}
.user-card .card-inset ul li:last-of-type {
  border-bottom: none;
}

.left-column {
  height: 100px;
}

.nav-cont {
  position: fixed;
  height: 100vh;
}

.main-cont {
  margin-left: 106px;
}

#userInfo .user-img-container {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e9e5e9;
}
#userInfo .user-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
#userInfo .modal-body {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  padding: 1rem 3rem;
}
#userInfo .modal-body .right-col p {
  text-align: center;
  font-size: 14px;
  margin-top: 5px;
}
#userInfo p.name {
  font-size: 18px;
  font-weight: bold;
  margin: 0.5rem 0;
  color: #531253;
}

.rating {
  width: 100px;
  height: 100px;
  border: solid 5px #1ddd1d;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: #1ddd1d;
  margin: 0 auto;
}

.card-inset {
  background-color: #e9e5e9 !important;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  margin: 16px 0 0 0;
}
.card-inset ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.card-inset ul li {
  border-bottom: 1px solid #d7c2d7;
  padding: 1rem 0;
  color: #531253;
  font-size: 14px;
}
.card-inset ul li:last-of-type {
  border-bottom: none;
}
.card-inset .select2-search.select2-search--inline {
  padding: 0 !important;
}

.ai-loader {
  width: 100%;
  height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  animation: fade-out 5s ease;
}
.ai-loader h2 {
  margin-top: 6rem;
  font-weight: bold;
}
.ai-loader h2.nomargin {
  margin-top: 1rem;
}

.graphic-placeholder {
  width: 300px;
}

.match-container img {
  border-radius: 10px;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 992px) {
  .left-column {
    height: 100%;
  }
  .lead-cell {
    margin: 2px 0;
  }
  .lead-cell-accent {
    display: none;
  }
  .lead-row {
    margin-bottom: 4rem !important;
  }
}
@media screen and (max-width: 576px) {
  .nav-cont {
    height: auto;
  }
  .main-cont {
    margin-left: 0;
  }
}
.lead-cell-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
}
.lead-cell-accent.high {
  background-color: #73d173;
  color: white;
}
.lead-cell-accent.medium {
  background-color: #dda21d;
  color: black;
}
.lead-cell-accent.low {
  background-color: #dd1d1d;
  color: white;
}

.lead-cell {
  background-color: #f2f1f5;
  color: black;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  max-height: 40px;
}
.lead-cell.high {
  background-color: #73d173;
  color: white;
}
.lead-cell.medium {
  background-color: #edb943;
  color: black;
}
.lead-cell.low {
  background-color: #dd1d1d;
  color: white;
}

.cell-spacer {
  margin-left: 11px;
}

.lead-cell-img {
  width: 30px;
  height: 30px;
  margin: 0 auto;
}
.lead-cell-img img {
  border-radius: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.lead-row:hover {
  cursor: pointer;
}
.lead-row .lead-cell:hover {
  background-color: #e0dfe5;
}
.lead-row .lead-cell.high:hover {
  background-color: #4bb73e;
}
.lead-row .lead-cell.medium:hover {
  background-color: #dda21d;
}
.lead-row .lead-cell.low:hover {
  background-color: #b91a1a;
}

.branding-tag {
  position: fixed;
  left: -76px;
  z-index: 9999;
  top: 50vh;
  transform: rotate(-90deg);
  background: #efdaef;
  border-radius: 10px;
  padding: 5rem 8px 0 8px;
  color: black;
}
.branding-tag p {
  margin: 0;
}

.base.main-cont {
  margin-left: 0;
}

.fs-7 {
  font-size: 11px;
}

.welcome-graphic {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
}

.selected polygon {
  fill: #ffd656;
  stroke: #ffd656;
}

.unselected polygon {
  fill: #bfbfbf;
  stroke: #bfbfbf;
}

.radio-button-list label {
  margin-left: 8px;
}

.text-teal {
  color: #36b3b3 !important;
}

.btn-primary {
  background-color: #36b3b3 !important;
  border-color: #36b3b3 !important;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0 0) !important;
  transition: 0.5s ease !important;
}

.btn-primary:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 0 0) !important;
}

.icon-box {
  background-color: #36b3b3 !important;
  background-image: linear-gradient(rgba(255, 255, 255, 0.88) 0 0) !important;
  color: #36b3b3 !important;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  padding: 5px;
}

.provider-info {
  border-bottom: 0.5px solid #e5e5e5;
  padding: 0 0 1rem 0;
}
.provider-info:first-of-type {
  padding-top: 1rem;
}
.provider-info:last-of-type {
  border-bottom: 0;
}

.table-bordered.dataTable tr {
  height: 1px;
}
.table-bordered.dataTable tr td {
  height: inherit;
}
.table-bordered.dataTable tr td div {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

table.table-bordered.dataTable th, table.table-bordered.dataTable td {
  border: solid 4px #f9fbff;
  vertical-align: middle;
  background-color: #f2f1f5;
}

thead th {
  background-color: transparent !important;
}

table.dataTable.no-footer {
  border-bottom: 0px solid #111 !important;
}

.login-box {
  width: 360px;
}

.cursor-pointer:hover {
    cursor: pointer;
}

/*# sourceMappingURL=styles.css.map */
