label.required:after {
  content: " *";
  color: red;
}

.max-lines {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.max-lines2 {
  width: 650px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hide {
  display: none;
}

.pointer {
  cursor: pointer;
}

@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #20152d;
} */
.rating {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.rating input {
  display: none;
}
.rating label {
  position: relative;
  width: 0;
  height: 90px;
  cursor: pointer;
  transition: 0.5s;
  filter: grayscale(1);
  text-align: center;
  opacity: 0;
}
.rating:hover label {
  width: 160px;
  opacity: 0.2;
}
.rating input:hover + label,
.rating input:checked + label {
  filter: grayscale(0);
  opacity: 1;
  width: 160px;
}
.rating label p {
  color: #000;
  font-size: 13px;
  padding-top: 10px;
  font-weight: 500;
  white-space: normal;
  opacity: 0;
  transform: translateY(-50px) scale(0);
  transition: 0.5s;
}
.rating input:hover + label p,
.rating input:checked + label p {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dropbtn {
  background-color: #e1f0ff;
  color: black;
  padding: 0.375rem 0.75rem;
  font-size: 13px;
  border: none;
  cursor: pointer;
  border-radius: 0.25rem;
}

.dropbtn:hover,
.dropbtn:focus {
  background-color: #f8f9fa;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  font-family: Arial;
  min-width: 130px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

/* search dashboard frontend */
/*the container must be positioned relative:*/

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fafafa;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}