@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");

* {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #008069;
  --grey: #f1f0f6;
  --dark-grey: #f2f6fb;
  --light: #fff;
  --dark: #000;
  --green: #81d43a;
  --green-blue: #10837d;
  --olive-green: #4a6058;
  --light-green: #e3ffcb;
  --blue: #1775f1;
  --midnight-blue: rgb(36, 81, 149);
  --light-blue: #d0e4ff;
  --dark-blue: #0c5fcd;
  --red-400: #f27979;
  --red: #fc3b56;
  --tabs-color: rgb(16, 131, 125);
}

/* Navbar responsive code start */
.search-input {
  flex: 1;
  padding: 0.5rem;
  border-radius: 50px;
}

/* styles.css */
/* styles.css */

/* .overlay-active {
	width: 100%;
	z-index: 1000;
	background-color: rgba(0, 0, 0, 0.5);
  } */

/* Additional styles for the navbar, adjust as needed */
#navbar {
  transition: transform 0.5s ease-in-out;
}

.invisible {
  transform: translateX(-100%);
}

.visible {
  transform: translateX(0);
}

#navbarOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Change the color and opacity as needed */
  z-index: 99999; /* Set a z-index lower than the navbar to position it behind */
  display: none; /* Initially hide the overlay */
}

/* Navbar responsive code end */

html {
  overflow-x: hidden;
}

body {
  /* background: var(--grey); */
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.primary-color {
  color: var(--primary-color);
}

/* SIDEBAR */






#home
{
margin-top:-20px;    
}



#sidebar {
  position: fixed;
  max-width: 260px;
  width: 100%;
  background: var(--light);
  top: 112px;
  left: 0;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  transition: all 0.3s ease;
  /* z-index: 200; */
  /* position: absolute; */
}
#sidebar.hide {
  max-width: 60px;
}
/* #sidebar.hide:hover {
	max-width: 260px;
} */
#sidebar::-webkit-scrollbar {
  display: none;
}

#sidebar li img {
  height: 25px;
  width: 25px;
  object-fit: cover;
  padding-bottom: 5px;
  margin-right: 10px;
  margin-left: 18px;
  object-fit: cover;
}

#sidebar .side-menu {
  transition: all 0.3s ease;
}
#sidebar.hide .side-menu {
  padding: 0 6px;
}
/* #sidebar.hide:hover .side-menu {
	padding: 0 20px;
} */
#sidebar .side-menu a {
  display: flex;
  align-items: center;
  font-size: 14px;
  /* color: var(--dark); */
  padding: 12px 16px 12px 0;
  transition: all 0.3s ease;
  border-radius: 10px;
  margin: 4px 0;
  white-space: nowrap;
}
/* #sidebar .side-menu > li > a:hover {
  color: var(--grey);
} */

/* SIDEBAR */

/* CONTENT */
#content {
    
    
  position: relative;
  width: calc(100% - 260px);
  left: 260px;
  transition: all 0.3s ease;
}

#sidebar.hide + #content {
  width: calc(100% - 60px);
  left: 60px;
}
/* NAVBAR */
nav {
  background: var(--light);
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  grid-gap: 28px;
  /* position: sticky; */
  top: 0;
  left: 0;
  z-index: 100;
}
nav .toggle-sidebar {
  font-size: 18px;
  cursor: pointer;
}
/* NAVBAR */

/* MAIN */
main {
  width: 100%;
  padding: 24px 30px 30px 30px;
  margin-top: 120px;
  /* background: #000; */
}

/* career page er active code start  */

.career-tab-content {
  display: none;
}

.career-tab-content.active {
  display: block;
}

/* 
  #tabs li a.active {
    color: var(--tabs-color); 
	font-weight: 700;
  } */

#tabs li a:hover {
  background-color: var(--dark-grey);
}

/* popup tab start  */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* popup overlayCart tab start  */
.overlayCart {
  display: none;
  position: fixed;
  top: 0;
  right: -321px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#productCart {
  display: none;
  background: #000;
  z-index: 9999;
}

/* toggle list start */
.prescriptionListHidden {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.5s ease, opacity 0.5s ease;
}

.prescriptionListVisible {
  height: auto;
  opacity: 1;
}

.rotate180 {
  transform: rotate(180deg);
  transition: transform 0.5s ease;
}

.tab-content.hidden {
  display: none;
}

.tab-user.active {
  background-color: #e6fcf6;
  color: #008069;
}

/* button toggle start  */
.tab-button {
  color: #000;
  font-weight: 600;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 5px;
  transition: background-color 0.3s;
  text-transform: uppercase;
}

/* .tab-button:hover {
    background-color: #414366;
  } */

.tab-button.active {
  background-color: #affff2;
}

.accordion-content {
  display: none;
}

#referralInput {
  border: 1px solid #008069;
}

/* Style the input when focused */
#referralInput:focus {
  border-color: #008069;
}

#IconShareId {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  #content {
    position: relative;
    width: calc(100% - 60px);
    transition: all 0.3s ease;
    left: 0px;
    width: 100%;
  }
  nav .nav-link,
  nav .divider {
    display: none;
  }
}

@media screen and (max-width: 1022px) {
  #sidebar {
    top: 129px; /* Top value for small screens */
    display: none;
    width: 100%;
    max-width: auto;
  }
  #content {
    left: 0px;
    width: 100%;
    max-width: auto;
  }
  
  

  
  main {
    /* padding: 24px 30px 30px 30px; */
    padding-top: 24px;
    padding-left: 10px;
    /* padding-bottom: 10px; */
    padding-right: 10px;
  }
}

@media screen and (min-width: 1023px) and (max-width: 1200px) {
  #sidebar {
    top: 71px; /* Top value for medium screens */
    display: block;
  }
}

.custom-owl-prev,
.custom-owl-next {
  font-size: 35px;
  background-color: #000 !important;
  color: white !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-owl-prev {
  left: 1;
  padding-bottom: 8px;
}

.custom-owl-next {
  right: 0;
  padding-bottom: 8px;
}

.imgStyle {
  width: 100px;
  height: 100px;
  border: 3px solid grey;
}

/* .owl-prev, .owl-next {
		display: none; 
	  } */

/* .right-sidebar { display: none; } */

.submenu {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.submenu.open {
  display: block;
  opacity: 1;
}

.icon {
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(90deg);
}
.submenu li a.hover {
  color: white !important;
}
