.slider {
	display: flex;
  position: relative;
  overflow: hidden;
}

.sharing {
  flex: 0 0 30%;
}

.thumb {
  flex: 0 0 0;
  transition: transform 0.5s ease;
}

.prev-slide-sidebar, .next-slide-sidebar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px;
  color: white;
  text-decoration: none;
}

.prev-slide-sidebar {
  left: 0;
}

.next-slide-sidebar {
  right: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
