@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 400;

  list-style: none;
}

a {
  text-decoration: none !important;
}

.navbar {
  width: 100%;
  /* height: 60px; */
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin: auto;
  align-items: center;
}

nav a {
  color: black;
}

nav i {
  font-size: 1.5rem;
  cursor: pointer;
}

.hrt_icon {
  color: lightgray;
  cursor: pointer;
}

.logo {
  width: 130px;
  height: 100%;
}

.search_bar {
  width: 50%;
  border: 1px solid black;
  border-radius: 10px;
  position: relative;
}

.search_bar input {
  width: 80%;
  margin: .5rem;
  border: none;
  outline: none;
}

.search_bar i {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  padding: .2rem;
  position: absolute;
  right: 10px;
  bottom: 0;
  top: 5px;
  padding: .2rem;
  font-size: 1.2rem;
  cursor: pointer;

}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  padding: 15px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  height: 50px;
}

.navbar-right {
  display: flex;
  align-items: center;
}

.logout-btn {
  margin-right: 20px;
  padding: 10px 15px;
  background-color: #dc3545;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.nav_bar_btn {
  display: block !important;
  padding: 0;
  font-size: 25px;
  color: #333;
}

@media screen AND (min-width:992px) {
  .nav_bar_btn {
    display: none !important;
  }
}

@media screen AND (max-width:992px) {
  #navbarNav.mobile_nav_hide {
    display: block !important;
    position: fixed;
    left: -101vw;
    top: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: auto;
    background: white;
    padding: 15px;
    animation: mobile_nav_hide 0.5s forwards;
  }
}


@media (max-width:595px) {

  .logo {
    width: 100px;
    height: 100%;
  }

  nav a {
    font-size: clamp(16px, 2vw, 18px) !important;
  }

  .search_bar {
    width: 39%;
  }

  .search_bar input {
    width: 55%;
  }
}



@media (max-width:800px) {
  section h1 {
    margin-top: 80px;
  }
}

.paginactive {
  background-color: #0d6efd;
  color: white;
}

.navbar_search_form {
  position: relative;
}

.navbar_search {
  position: relative;
}

.navbar_search_hint {
  position: relative;
  width: 100%;
}

.navbar_search_history {
  position: relative;
  width: 100%;
}

.navbar_search_list {
  position: absolute;
  width: 100%;
  max-height: 400px;
  height: auto;
  overflow-y: auto;
  top: 100%;
}
label{
  cursor: pointer;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}