.scroll-container {
  position: relative;
}

.scroll-left,
.scroll-right {
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  z-index: 10;
}

.scroll-left {
  left: 0;
}

.scroll-right {
  right: 0;
}

.videos {
  text-align:center;
  font-size:30px;
  padding-top:40px;
  padding-bottom:20px;
}

.list {
  display: flex;
  list-style-type: none;
  padding: 20px;
  overflow-x: auto;
  max-width: 100%;
  white-space: nowrap;
  gap: 25px;
  padding-left: 3%;
  padding-right: 3%;
}

.list::-webkit-scrollbar {
  display: none;
}

.review-item {
  width:400px;
  margin-right: 10px;
  height: 185px;
  flex-shrink: 0;
  box-shadow: 3px 3px 4px rgba(0,0,0,.15);
  border-radius: 8px;
  padding: 10px;
  background-color: #FFFFFF;
}

.review-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.stars-row img.stars {
  width: 45%;
  padding:1%;
}

.review-name {
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
}

.review-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.3;
  white-space: normal;
  word-wrap: break-word;
  text-align: left;
}

.list-vid {
  display: flex;
  list-style-type: none;
  padding: 20px;
  overflow-x: auto;
  max-width: 100%;
  white-space: nowrap;
  gap: 5px;
  padding-left: 3%;
  padding-right: 3%;
}

.list-vid::-webkit-scrollbar {
  display: none;
}

.item {
  flex: 0 0 200px;
  margin-right: 10px;
  height: 100%;
  flex-shrink: 0;
  box-shadow: 3px 3px 4px rgba(0,0,0,.15);
  border-radius: 3px;
}

.thumbnail {
  height:200px;
  border-radius: 3px;
}

.item:not(:last-child) { margin-right: 10px; }

.item:last-child {
  position: relative;
}

.item:last-child::after {
  position: absolute;
  left: 100%;
  height: 1px;
  width: 20px;
  display: block;
  content: "";
}

.item:not(:last-child) { margin-right: 10px; }



.youtube-link {
  text-align:center;
  font-size:20px;
  padding-bottom:20px;
}

.dr-link {
  text-decoration:none;
  font-family: 'Lora', serif;
}

.yt-icon {
  height:1em;
}