/* 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: 4px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bell{
  display:block;
  width: 40px;
  height: 40px;
  font-size: 22px;
  margin:50px auto 0;
  color: #9e9e9e;
  -webkit-animation: ring 4s .7s ease-in-out infinite;
  -webkit-transform-origin: 50% 4px;
  -moz-animation: ring 4s .7s ease-in-out infinite;
  -moz-transform-origin: 50% 4px;
  animation: ring 4s .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); }
}

/* .font-weight-600 {
  font-weight: 600;
} */

.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: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.header .profile-details .admin_name{
  font-size: 15px;
  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: 12;
}
.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: 30px;
    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;
}
.dashboard .quick-links .box{
  min-height: 95px;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    display: flex;
    margin-bottom: 6px;
    border-radius: 0;
    border: none;
}
.dashboard .quick-links .box:nth-child(1){
  background-color: #FFF190;
}
.dashboard .quick-links .box:nth-child(2){
  background-color: #BEEFFF;
}
.dashboard .quick-links .box:nth-child(3){
  background-color: #D5FFE0;
}
.dashboard .quick-links .box:nth-child(4){
  background-color: #FFEBD1;
}
.dashboard .quick-links ul.quick-links-details {
  margin: 0px;
    list-style: none;
    width: 100%;
}

.dashboard .quick-links li a img{
  margin: 0 15px 0 25px;
}
.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 .form-btn{
  height: 48px;
  margin-bottom: 10px;
}

.popupCarousel .carousel-control-next, .popupCarousel .carousel-control-prev {
  bottom: 5px;
  opacity: 1;
}
.popupCarousel li {
  line-height: 24px;
}
.header .logo-details {
  display: none;
}

.fs-plans h3 {
  color: #8b8b8b;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 15px;
}

.fs-plans .quick-links {
  padding: 0 !important;
  justify-content: start !important;
  gap: 20px;
  align-items: unset !important;
}
.fs-plans .quick-links.active-plan .plan-price {
  background-color: #FFEA53;
}
.fs-plans .plan-price {
  width: 85px;
  background-color: #FFF5A8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.fs-plans .plan-price h4 {
  margin: 0;
  font-weight: 600;
}
.fs-plans .plan-price p {
  margin: 0;
  line-height: 15px;
  font-size: 12px;
}
.fs-plans .plan-detail {
  width: calc(100% - 85px);
  padding: 10px 0;
}
.plan-detail .form-check-label {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.plan-detail .radio-container {
  top: 0;
}
.plan-detail p {
  font-size: 12px;
  margin-bottom: 6px;
  line-height: 17px;
}

.plan-detail a {
  color: #00779D;
}

.doctor-chat {
  background: #00779D;
  width: 60px;
  height: 90px;
  box-shadow: 0px 2px 4px #0000008a;
  border-radius: 5px 0px 0px 5px;
  position: fixed;
  right: 0;
  bottom: 10px;
  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;
}
.btn:focus {
  border-color: transparent;
  outline: none;
  outline-offset: 0;
}
.btn:active, .btn.active {
  box-shadow: unset;
}
.appointments-details {
  position: sticky;
  top: 20px;
  margin-bottom: 25px;
}
.attention-icon-dashboard {
  border-left: 1px solid #dee2e6;
  padding: 0 15px;
  display: flex;
}
.attention-icon-dashboard img {
  width: 16px;
}
/* Responsive Media Query */
@media (max-width: 767px) {
  .header-nav > a:nth-child(1), .header-nav > a:nth-child(2){
    display: none !important;
  }
  .subscribe-plan img {
    display: none;
  }
}
