/* Googlefont Poppins CDN Link */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif !important;
  /* color: #1D1D1D; */
}
.pointer {
  cursor: pointer;
}
.wrapper {
  padding-top: 0px;
  margin: 0px 20px 20px 20px;
  border-radius: 10px;
  background-color: #ffffff;
  position: relative;
  height: calc(100vh - 100px);
  overflow: hidden;
}
.header {
  background-color: #ffffff;
  border: 1px solid #f3f3f3;
  height: 62px;
  border-radius: 0 0 4px 4px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .animSwitch input:checked[type="checkbox"] {
  background: #ffffff;
  border-color: red;
}
.header .animSwitch input[type="checkbox"]::before {
  content: "";
  width: 23px;
  height: 18px;
  background: #308f00;
}
.header .animSwitch input:checked[type="checkbox"]::before {
  content: "";
  left: 16px;
  background: red;
}
.header .animSwitch input[type="checkbox"] {
  width: 40px;
  height: 20px;
  border: 1px solid #308f00;
  background-color: #fff;
}
.bell {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 22px;
  margin: 50px auto 0;
  color: #9e9e9e;
  -webkit-animation: ring 4s 0.7s ease-in-out infinite;
  -webkit-transform-origin: 50% 4px;
  -moz-animation: ring 4s 0.7s ease-in-out infinite;
  -moz-transform-origin: 50% 4px;
  animation: ring 4s 0.7s ease-in-out infinite;
  transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
  0% {
    -webkit-transform: rotateZ(0);
  }
  1% {
    -webkit-transform: rotateZ(30deg);
  }
  3% {
    -webkit-transform: rotateZ(-28deg);
  }
  5% {
    -webkit-transform: rotateZ(34deg);
  }
  7% {
    -webkit-transform: rotateZ(-32deg);
  }
  9% {
    -webkit-transform: rotateZ(30deg);
  }
  11% {
    -webkit-transform: rotateZ(-28deg);
  }
  13% {
    -webkit-transform: rotateZ(26deg);
  }
  15% {
    -webkit-transform: rotateZ(-24deg);
  }
  17% {
    -webkit-transform: rotateZ(22deg);
  }
  19% {
    -webkit-transform: rotateZ(-20deg);
  }
  21% {
    -webkit-transform: rotateZ(18deg);
  }
  23% {
    -webkit-transform: rotateZ(-16deg);
  }
  25% {
    -webkit-transform: rotateZ(14deg);
  }
  27% {
    -webkit-transform: rotateZ(-12deg);
  }
  29% {
    -webkit-transform: rotateZ(10deg);
  }
  31% {
    -webkit-transform: rotateZ(-8deg);
  }
  33% {
    -webkit-transform: rotateZ(6deg);
  }
  35% {
    -webkit-transform: rotateZ(-4deg);
  }
  37% {
    -webkit-transform: rotateZ(2deg);
  }
  39% {
    -webkit-transform: rotateZ(-1deg);
  }
  41% {
    -webkit-transform: rotateZ(1deg);
  }

  43% {
    -webkit-transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(0);
  }
}

@-moz-keyframes ring {
  0% {
    -moz-transform: rotate(0);
  }
  1% {
    -moz-transform: rotate(30deg);
  }
  3% {
    -moz-transform: rotate(-28deg);
  }
  5% {
    -moz-transform: rotate(34deg);
  }
  7% {
    -moz-transform: rotate(-32deg);
  }
  9% {
    -moz-transform: rotate(30deg);
  }
  11% {
    -moz-transform: rotate(-28deg);
  }
  13% {
    -moz-transform: rotate(26deg);
  }
  15% {
    -moz-transform: rotate(-24deg);
  }
  17% {
    -moz-transform: rotate(22deg);
  }
  19% {
    -moz-transform: rotate(-20deg);
  }
  21% {
    -moz-transform: rotate(18deg);
  }
  23% {
    -moz-transform: rotate(-16deg);
  }
  25% {
    -moz-transform: rotate(14deg);
  }
  27% {
    -moz-transform: rotate(-12deg);
  }
  29% {
    -moz-transform: rotate(10deg);
  }
  31% {
    -moz-transform: rotate(-8deg);
  }
  33% {
    -moz-transform: rotate(6deg);
  }
  35% {
    -moz-transform: rotate(-4deg);
  }
  37% {
    -moz-transform: rotate(2deg);
  }
  39% {
    -moz-transform: rotate(-1deg);
  }
  41% {
    -moz-transform: rotate(1deg);
  }

  43% {
    -moz-transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(0);
  }
}

@keyframes ring {
  0% {
    transform: rotate(0);
  }
  1% {
    transform: rotate(30deg);
  }
  3% {
    transform: rotate(-28deg);
  }
  5% {
    transform: rotate(34deg);
  }
  7% {
    transform: rotate(-32deg);
  }
  9% {
    transform: rotate(30deg);
  }
  11% {
    transform: rotate(-28deg);
  }
  13% {
    transform: rotate(26deg);
  }
  15% {
    transform: rotate(-24deg);
  }
  17% {
    transform: rotate(22deg);
  }
  19% {
    transform: rotate(-20deg);
  }
  21% {
    transform: rotate(18deg);
  }
  23% {
    transform: rotate(-16deg);
  }
  25% {
    transform: rotate(14deg);
  }
  27% {
    transform: rotate(-12deg);
  }
  29% {
    transform: rotate(10deg);
  }
  31% {
    transform: rotate(-8deg);
  }
  33% {
    transform: rotate(6deg);
  }
  35% {
    transform: rotate(-4deg);
  }
  37% {
    transform: rotate(2deg);
  }
  39% {
    transform: rotate(-1deg);
  }
  41% {
    transform: rotate(1deg);
  }

  43% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}

.logo {
  padding-left: 28px;
}
.sidebar {
  position: absolute;
  height: 100%;
  width: 60px;
  background: #f8f8f8;
  transition: all 0.5s ease;
  z-index: 1;
  overflow: hidden auto;
  border-radius: 10px 0 0px 10px;
}
.sidebar.active {
  width: 240px;
}
#main-nav .logo-details {
  height: 60px;
  display: flex;
  align-items: center;
}
#main-nav .logo-details i,
.header .logo-details i {
  font-size: 28px;
  font-weight: 500;
  color: #5e5e5e;
  min-width: 60px;
  text-align: center;
  cursor: pointer;
}
#main-nav .logo-details .logo_name {
  color: #5e5e5e;
  font-size: 24px;
  font-weight: 500;
}

.header h1 {
  font-size: 18px;
  font-weight: 400;
  color: #505050;
  margin: 0 0 0 15px;
}
.header-nav {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 23px;
}
.header-nav a {
  font-size: 22px;
  color: #7b7b7b;
  text-decoration: none;
}
.header-nav a span {
  vertical-align: inherit;
}
.header .profile-details {
  display: flex;
  align-items: center;
  border-radius: 6px;
  height: 60px;
  padding: 0 15px 0 2px;
}
.header .profile-details img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.header .profile-details .admin_name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0 10px 0 0;
  white-space: nowrap;
}
.header .profile-details i {
  font-size: 25px;
  color: #333;
  position: relative;
  top: 8px;
}

.header .profile-menu,
.monthlist {
  position: absolute;
  top: 170px;
  right: 0;
  padding-top: 10px;
  background: #ffffff;
  width: 187px;
  border-radius: 5px;
  transition: 0.3s;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  z-index: 11;
}
.monthlist {
  z-index: 1;
  max-height: 250px;
  overflow: auto;
  padding-top: 0;
}

.header .profile-menu.active,
.monthlist.active {
  top: 70px;
  visibility: visible;
  opacity: 1;
}
.monthlist.active {
  top: 135px;
  right: 0;
}

.header .profile-menu::before,
.monthlist::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 25px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  transform: rotate(45deg);
}

.header .profile-menu ul,
.monthlist ul {
  padding: 0;
  margin: 0;
}
.header .profile-menu ul li,
.monthlist ul li {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  gap: 11px;
}
.header .profile-menu ul li a,
.monthlist ul li a {
  list-style: none;
  display: flex;
  align-items: center;
  color: #00779d;
  font-size: 14px;
  text-decoration: none;
}
.header .profile-menu ul li:hover a,
.header .profile-menu ul li:hover span {
  color: #1d1d1d;
}
.header .profile-menu ul li:last-child {
  background-color: #ffe815;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  border-radius: 0 0 5px 5px;
}
.header .profile-menu ul li:last-child a,
.header .profile-menu ul li:last-child span {
  color: #1d1d1d;
  text-transform: uppercase;
}
.header .profile-menu ul li span {
  font-size: 18px;
  color: #00779d;
}

.dashboard .box .title {
  font-size: 24px;
  font-weight: 500;
  /* margin-bottom: 10px; */
}

.home-content {
  width: 100%;
}

/* Right box */
.home-content .box {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
}
/* .home-content .dashboard .box {
  height: calc(100% - 23px);
} */
.dashboard .quick-tabs .box {
  border: none;
  justify-content: space-between;
  display: flex;
  align-items: center;
  height: 70px;
  margin-bottom: 12px;
  border: 2px solid #fff;
  border-radius: 0;
}
.dashboard .quick-tabs .box span {
  background-color: #f9f9f9;
  width: 68px;
  height: 67px;
  font-size: 25px;
  color: #00b5ee;
  transform: rotate(-180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard .quick-tabs a:hover {
  text-decoration: none;
}
.dashboard .quick-tabs .box p {
  margin: 8px 0 0 0;
  line-height: 17px;
  color: #1d1d1d;
  font-size: 16px;
}
.dashboard .quick-links .box {
  min-height: 95px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  display: flex;
  margin-bottom: 6px;
  border: none;
}
/*.dashboard .quick-links .box:nth-child(1){
  background-color: #FFF190;
}*/
.dashboard .quick-links .box:nth-child(1) {
  background-color: #beefff;
}
.dashboard .quick-links .box:nth-child(2) {
  background-color: #d5ffe0;
}
.dashboard .quick-links .box:nth-child(3) {
  background-color: #ffebd1;
}
.dashboard .quick-links ul.quick-links-details {
  margin: 0px;
  list-style: none;
  width: 100%;
}

.dashboard .quick-links li a .details-img {
  background-color: #ffffff;
  border-radius: 4px;
  width: 80px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard .quick-links li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1d1d1d;
  justify-content: space-between;
}
.dashboard .quick-links li a h2 {
  font-size: 18px;
  font-weight: normal;
  margin: 0;
}
.dashboard .quick-links li a span {
  font-size: 12px;
  color: #5e5e5e;
}
.dashboard .quick-links li a p {
  font-size: 13px;
  margin: 5px 0 0 0;
  line-height: normal;
}

.subscribe-plan {
  color: #1d1d1d;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.subscribe-plan a {
  color: #00779d;
}
.subscribe-plan h2 {
  font-size: 18px;
}
.subscribe-plan p {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 11px;
}
.subscribe-plan .contact {
  font-size: 16px;
}

.subscribe-plan .btn-primary {
  height: 46px;
  margin-bottom: 10px;
  font-size: 16px;
}

.popupCarousel .carousel-control-next,
.popupCarousel .carousel-control-prev {
  bottom: 5px;
  opacity: 1;
}
.popupCarousel li {
  line-height: 24px;
}
.header .logo-details {
  display: none;
}

.fs-plans h2 {
  color: #505050;
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

.fs-plans .quick-links {
  box-shadow: 0px 2px 2px #00000029;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
}
.fs-plans .quick-links:first-child {
  margin-bottom: 15px;
}
.fs-plans .p-detail {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fs-plans .p-detail h2 {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1d;
}
.fs-plans .p-detail .checkmark {
  top: -13px;
  left: -27px;
}
.fs-plans .p-detail h2 {
  font-size: 16px;
  font-weight: 600;
  color: #1D1D1D;
}
.fs-plans .p-detail .checkmark {
    top: -13px;
    left: -27px;
}
.fs-plans .more-details {
  height: 57px;
    background: #FFFFFF;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px;
}
.more-details .label-span {
  color: #858585;
    font-size: 16px;
}
.morecard-details {
  background: #F9F9F9;
  border-top: 1px solid #E7E7E7;
  border-radius: 0px 0px 4px 4px;
}
.inner-details {
  border-bottom: 1px solid #e7e7e7;
  display: flex;
  justify-content: space-between;
  padding: 12px 24px;
  align-items: center;
}
.billing-amount {
  height: 40px;
  background: #effbff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 5px;
}
.fs-plans .plan-benefits {
  background: #fcfcfc;
  border-top: 1px solid #e7e7e7;
  border-radius: 0px 0px 4px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fs-plans .plan-benefits span {
  padding: 16px;
  text-align: center;
  height: 56px;
  color: #505050;
  font-size: 16px;
  flex: 1;
  text-wrap: nowrap;
}
.fs-plans .plan-benefits span:not(:last-child) {
  border-right: 1px solid #e7e7e7;
}
.fs-plans .cost-per-head h3 {
  color: #1d1d1d;
  font-size: 40px;
  margin: 0 0 5px 0;
  line-height: 30px;
}
.fs-plans .cost-per-head p {
  margin: 0;
  color: #1d1d1d;
  font-weight: 600;
}
.plan-detail h3 {
  color: #1d1d1d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.plan-detail .radio-container {
  top: 0;
}
.plan-detail p {
  font-size: 16px;
  color: #505050;
  line-height: 28px;
  margin: 0;
}

.plan-detail a {
  color: #00779d;
}
.plan-members {
  margin-top: 30px;
}
.blood-pressure {
  background: #effbff;
  border: 1px solid #d2f4ff;
  border-radius: 4px;
  margin-top: 25px;
}
.blood-pressure ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blood-pressure ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.blood-pressure ul li:not(:last-child) {
  border-bottom: 1px solid #d2f4ff;
}
.my-doctors-list .media {
  border-bottom: 1px solid #e7e7e7;
}
.member-row {
  background: #effbff;
  border: 1px solid #d2f4ff;
  border-radius: 4px;
  display: grid;
  justify-content: space-between;
  align-items: center;
  padding: 2px 16px;
  margin-bottom: 10px;
  height: 83px;
  grid-template-columns: 34% 20% 1fr 1fr 1fr;
}
.member-row div {
  flex: 1;
}
.member-row .actions {
  justify-content: end;
}
.member-row p {
  margin: 0;
  line-height: 18px;
}
.member-row .lightgray {
  color: #d8d8d8 !important;
}
.member-row .nd-status {
  color: #fa4141;
}
.doctor-chat {
  background: #00779d;
  width: 60px;
  height: 90px;
  box-shadow: 0px 1px 2px #0000008a;
  border-radius: 5px;
  position: fixed;
  right: 0;
  bottom: 25px;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 15px;
  font-size: 13px;
  cursor: pointer;
  padding-left: 5px;
}
.doctor-chat .icon-doctor {
  font-size: 24px;
  margin-bottom: 8px;
}

.alert-doctor-chat {
  background: #00779d;
  width: 116px;
  height: 38px;
  box-shadow: 0px 1px 2px #0000008a;
  border-radius: 5px;
  right: 0;
  bottom: 25px;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}
.alert-doctor-chat .icon-doctor {
  font-size: 17px;
  margin-right: 4px;
}

.urgant-visit-text {
  font: normal normal normal 13px/14px Open Sans !important;
  letter-spacing: 0px !important;
  color: #1d1d1d !important;
  opacity: 1 !important;
  width: 172px !important;
}

.btn:focus {
  border-color: transparent;
  outline: none;
  outline-offset: 0;
}
.btn:active,
.btn.active {
  box-shadow: unset;
}

.time-slot-icon-css {
  font-size: 36px;
}

/* Responsive Media Query For Mobile */
@media (max-width: 767px) {
  .header-nav > a:nth-child(1),
  .header-nav > a:nth-child(2) {
    display: none !important;
  }
  .subscribe-plan img {
    display: none;
  }
  .member-row {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 16px;
  }
  .fs-plans .plan-benefits {
    height: auto;
    margin-top: 20px;
  }
}
