/* Start: Custom Scroll Bar */

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.wrapper ul {
  height: 70px;
  overflow: hidden;
  padding-left: 15px;
}

/* End */

/* Start: Show more less toggle */
.wrapper ul.active {
  height: auto;
}

.wrapper .toggle_btn {
  margin-top: 15px;
  font-weight: 700;
  color: #ff406c;
  cursor: pointer;
  font-size: 15px;
}

.wrapper .toggle_btn.active .fas {
  transform: rotate(180deg);
}
/* End */

/* Start: More related videos */
.items-head p {
  padding: 5px 20px;
  margin: 10px;
  font-weight: bold;
  font-size: 20px;
}

.items-head hr {
  width: 20%;
  margin: 0px 30px;
  border: 1px solid #0b5aa2;
}

.items-body {
  padding: 10px;
  margin: 10px;
  display: grid;
  grid-gap: 10px;
  overflow-y: auto;
  height: 300px;
}
/* End */

/* Start: Next Previous Button */
.nxpv a {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
}

.nxpv a:hover {
  background-color: #ddd;
  color: black;
}

.nxpv .previous {
  background-color: #f1f1f1;
  color: black;
}

.nxpv .next {
  background-color: #04aa6d;
  color: white;
  float: right;
}

.nxpv .round {
  border-radius: 50%;
}
/* End */

/* Start: Profile picture from first name and Last name */
[data-initials]:before {
  background: #099bdd;
  color: white;
  opacity: 1;
  content: attr(data-initials);
  display: inline-block;
  font-weight: 600;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 0.5em;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: x-large;
}

/* End */
