.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

.loginUI img {
  width: 80px;
  margin-bottom: 20px;
}

.loginUI {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../../assets/img/edDesktopBG.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.loginUI .card {
  box-shadow: 1px 1px 20px rgb(60,60,60);
  border: none;
  border-top: 2px solid #333;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 200;
}

body.dashboardUI {
  background-image: url("../../assets/img/edDesktopBG.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0px;
}

.dashboardUI .container {
  padding: 20px;
}

.dashboardMain {
  width: 100%;
  height: calc(100vh - 81px);
  background-color: rgba(255,255,255,0.9);
  overflow-y: auto;
}

.navbar-brand img {
  width: 50px;
}

.yourServices .card img {
  width: 50px;
  display: block;
}

.yourServices .card-body {
  position: relative;
  min-height: 300px;
}

.yourServices .card-body .badge {
  position: absolute;
  top: 5px;
  right: 5px;
}

.yourServices .card {
  border: 2px solid #333;
  margin-bottom: 20px;
}

.serviceManage h1 img {
  width: 50px;
  vertical-align: text-top;
  margin-right: 7px;
}

.serviceManage .badge {
  margin-bottom: 20px;
}

.navbar {
  height: 80px;
}

.profileCard {
  background: rgba(231,231,231,0.5);
  box-shadow: 1px 1px 20px rgba(51,51,51,0.36);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 5px;
  padding-left: 15px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 15px;
}

.profileIcon {
  font-size: 40px;
  height: 50px;
  width: 50px;
  margin: auto;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333;
  color: white;
}

.profileCard .btn-group {
  width: 100%;
  display: flex;
  margin-top: 25px;
  justify-content: space-around;
}

.profileCard .btn-group .btn {
  max-width: 45%;
}

.profileCard .serviceCard img {
  display: block;
  width: 45px;
}

.profileCard .serviceCard .card-body {
  padding: 10px;
}

.profileCard .serviceCard .card-body .badge {
  margin-bottom: 10px;
}

.profileCard .serviceCard .card-body .pricing {
  position: absolute;
  right: 15px;
}

.profileCard .serviceCard {
  margin-bottom: 20px;
}

.profileCard .form-control {
  margin-bottom: 20px;
}

