* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: black;
}

main {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right bottom, rgb(26, 26, 26), rgb(30, 30, 30), black);
  padding: 20px;
}
main section {
  height: 100%;
  width: 350px;
  background-color: black;
  margin: auto;
}
main section .all-reels {
  height: 100%;
  width: 100%;
  overflow: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
main section .all-reels::-webkit-scrollbar {
  display: none;
}
main section .all-reels .reel {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
main section .all-reels .reel video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main section .all-reels .reel .bottom {
  padding: 30px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.948));
  width: 100%;
  position: absolute;
  bottom: 0;
}
main section .all-reels .reel .bottom .user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
main section .all-reels .reel .bottom .user img {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
main section .all-reels .reel .bottom .user h4 {
  font-size: 15px;
  font-weight: 500;
}
main section .all-reels .reel .bottom .user button {
  background-color: transparent;
  padding: 2px 4px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid white;
}
main section .all-reels .reel .bottom h3 {
  font-weight: 500;
  font-size: 20px;
}

.right {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  width: 40px;
  position: absolute;
  right: 0;
  /* height: 100%; */
  /* transform: translateX(100%); */
  bottom: 12%;
  /* background: linear-gradient(to right, transparent,rgba(0, 0, 0, 0.284)); */
}

.right h4 {
  cursor: pointer;
}

.right i {
  font-size: 25px;
  font-weight: 500;
}

.right h6 {
  font-size: 15px;
  font-weight: 500;
}

.right > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  cursor: pointer;
}

.love {
  color: red;
}

.right > div h4 {
  pointer-events: none;
}

.right > div h6 {
  pointer-events: none;
}

.mute {
  background-color: #333;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

.mute i {
  font-size: 20px;
  pointer-events: none;
}

.mute:active {
  scale: 0.95;
}/*# sourceMappingURL=style.css.map */