:root {
  --menu_bg: #f0eeee;
  --menu_text: #81be41;
  --navbar_bg: #fff;
  --navbar_profile_bg: #fff;
  --navbar_profile_hover: #ffffffc8;
  --notification_icon: #652d86;
}

* {
  overflow-x: hidden;
  font-family: source-sans-pro, sans-serif;
}

.navbar_container{
  background-color: #fff !important;
  width: 1200px; 
  margin:auto; 
  height:80px;
}

.logo_style{
  width: 150px;
  cursor: pointer;
}

.navbar {
  padding: 0.5rem 0rem !important;
}

.icono_style{
  width: 30px;
  height: 30px;
  /* background-color: #d14242; */
}

.offcanvas-body {
  display: flex;
  flex-direction: column;
  /* background: var(--menu_bg); */
  background-color: #eae8e7;
  justify-content: space-between;
  padding-top: 0px;
}

.offcanvas-body ul li a {
  font-size: 0.9rem !important;
}

.offcanvas-header {
  /* background: var(--menu_bg); */
  background-color: #eae8e7;
}

#offcanvasDarkNavbar {
  width: 300px;
  background-color: #eae8e7;
}

.bg-dark {
  background-color: var(--navbar_bg) !important;
}

.user_notifications {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

/* img, svg {
  vertical-align: middle;
  color: var(--notification_icon);
} */
/* 
.img-profile {
  width: 30px;
  height: 30px;
  border-radius: 50%;
} */

#profileButton {
  background-color: var(--navbar_profile_bg);
  border: none;
  padding: 2px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 10px;
}

#profileButton:hover {
  background-color: var(--navbar_profile_hover);
}

.btn-outline-light {
  --bs-btn-border-color: var(--menu_bg);
  border-color: var(--menu_bg);
}

.navbar-dark .navbar-toggler {
  border-color: var(--menu_bg);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--menu_text);
}

.badge {
  border-radius: 50%;
  width: 15px;
  height: 15px;
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  padding-top: 2px;
  font-weight: 600;
  position: absolute;
  top: 13px;
  right: 50px;
  background-color: #d14242;
}

.notDisplayNotifications {
  display: none;
}

.notifications_card {
  width: 250px;
  height: 350px;
  overflow-y: scroll;
  overflow-x: hidden;
  background: #f1f1f1;
  border-radius: 10px;
  padding: 10px;
  position: fixed;
  top: 50px;
  right: 85px;
  z-index: 9999;
}

.notifications_card::-webkit-scrollbar {
  display: none;
}

.notifications_card {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.notifications_card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #652d86;
}

.notifications_container {
  border-top: 1px solid #652d86;
  padding-top: 10px;
  margin-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.notification_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s;
  border-bottom: 1px solid #652d86;
}

.notification_info {
  padding: 0px;
}

.notification_title p {
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 0px;
  color: #000;
}

.notification_text p {
  font-size: 0.7rem;
  font-weight: 400;
  margin-bottom: 0px;
  color: #000;
}

.button_ok {
  padding-right: 0;
}

.button_ok button {
  background: #72ad32;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
}

.button_ok button p {
  margin-bottom: 0px;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 9999;
}

.main_loader_text {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0px;
  color: #652d86;
}

.nav-item {
  display: flex;
  align-items: center;
}

/* .nav-item img {
  margin-right: 10px;
  margin-bottom: 3px;
} */

.delete_user {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #3216434f;
  z-index: 9999;
  color: #fff;
  display: none;
  animation: fadein 0.5s;
}

.delete_user_container {
  width: 300px;
  height: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.delete_user_container h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #652d86;
}

.delete_user_container p {
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000;
}

.separator {
  width: 20px;
  height: 100%;
  background: transparent;
  margin: 10px 0;
}

.notifications_background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none;
}

@media (max-width: 768px) {
  .notifications_card {
    top: 60px;
    right: 10px;
  }

  .logo_style{
    width: 100px;
  }

  .icono_style{
    width: 25px;
    height: 25px;
  }
  
}

@media (max-width: 1200px) {
  .navbar_container {
    width: 100%;
  }
}


