* {
  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: 526px;
    background-color: white;
    /* overflow: scroll; */
    width: 100%;
    max-width: 294px;
    scroll-snap-type: y mandatory;
    border-radius: 20px;
    margin: 34px;
}

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

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

.video {
    height: 100%;
    width: 296px;
    margin-bottom: 63px;
    position: relative;
    scroll-snap-align: start;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
}

.video__player {
    width: 295px;
    border-radius: 19px;
}

.videoSidebar {
    position: absolute;
    top: 49%;
    right: 0px;
}

.videoSidebar .material-icons {
  font-size: 28px;
  cursor: pointer;
}

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

.videoFooter {
    position: relative;
    bottom: 96px;
    margin-left: -1px;
    color: white;
    display: flex
;
    background: aqua;
    display: none;
}

@keyframes spinTheRecord {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.videoFooter__record {
  animation: spinTheRecord infinite 5s linear;
  height: 50px;
  filter: invert(1);
  position: absolute;
  bottom: 0;
  right: 20px;
}

.videoFooter__text {
  flex: 1;
}

.videoFooter__text h3 {
  padding-bottom: 20px;
}

.videoFooter__icon {
  position: absolute;
}

.videoFooter__ticker {
  width: 400px;
  display: flex;
  align-items: center;
}

.videoFooter__ticker marquee {
  height: fit-content;
  margin-left: 30px;
  width: 60%;
}

.videoFooter__description {
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .app__videos {
    width: 100%;
    height: 100vh;
    max-width: 100%;
    border-radius: 0;
  }
    .video__player {
        object-fit: cover;
        width: 100%;
        /*height: 100%;*/
    }
    .video {
        position: relative;
        height: 100%;
        width: 100%;
        background-color: white;
        scroll-snap-align: start;
        scroll-snap-align: start;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .video__player {
         border-radius: 0px;
        height: 100vh;
    }
}
