/* TIKTOK */
* {
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-snap-type: y mandatory;
}

body {
  color: white;
  background-color: black;
  height: 100vh;
  display: grid;
  place-items: center;
}

.app__videos {
  position: relative;
  height: 100vh;
  background-color: black;
  overflow: scroll;
  width: 100%;
  max-width: 400px;
  scroll-snap-type: y mandatory;
}

.app__videos::-webkit-scrollbar {
  display: none;
}

.app__videos {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.video {
  position: relative;
  height: 100%;
  width: 100%;
  scroll-snap-align: start;
  -o-object-fit: cover;
  object-fit: cover
}

.video__player {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  margin: auto;
  position: relative;
  flex-shrink: 0;
  transition-property: transform
}

.videoSidebar {
  position: absolute;
  top: 25%;
  right: 0.5%;
}

.videoSidebar__button {
  padding: 12px;
  text-align: center;
}

.videoFooter {
  position: relative;
  bottom: 100px;
  color: white;
  margin-top: 3px;
}

.videoFooter .ctrls .name,
.videoFooter .ctrls span {
  font-size: 1em;
}

.videoFooter .ctrls span {
  color: #24eff2;
}

.videoFooter .ctrls .title {
  font-size: 0.9em;
}

.videoFooter .ctrls .name,
.videoFooter .ctrls .title {
  margin-left: 1em;
}

.videoFooter .ctrls .btm-tabs {
  border-top: 2px solid white;
  background-color: #16171B;
}

.videoFooter .ctrls .btm-tabs .tab-btn {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}

.videoFooter .ctrls .btm-tabs .tab-btn i {
  font-size: 1.5em;
  cursor: pointer;
}


@media (max-width: 425px) {
  .app__videos {
    width: 100%;
    height: 100vh;
    max-width: 100%;
    border-radius: 0;
    display: block;
    margin: 0 auto;
  }
}

/* TIKTOK END */