* {
  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: 750px;
  background-color: white;
  overflow: scroll;
  width: 100%;
  max-width: 400px;
  scroll-snap-type: y mandatory;
  border-radius: 20px;
  height:93vh !important;width: 90% !important;border-radius: 26px;
  background: #000;
}

.app__videos::-webkit-scrollbar {
  display: none;
}

.app__videos {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.video {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: white;
  scroll-snap-align: start;
}

.video__player {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.videoSidebar {
  position: absolute;
  top: 0%;
  right: 10px;
}

.videoSidebar .material-icons {
  font-size: 28px;
  cursor: pointer;
}

.videoSidebar__button {
  padding: 20px;
  text-align: center;
}

.videoFooter {
  position: absolute;
  bottom: 0;
  margin-left: 20px;
  color: white;
  display: flex;
}

@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;
  max-width:100%;
}

.videoFooter__text h3 {
  padding-bottom: 10px;
}

.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: 425px) {
  .app__videos {
    width: 100%;
    height: 100%;
    max-width: 100%;
    /*border-radius: 0;*/
  }
}

.video__player{
object-fit: contain !important;
}
.video{
background-color: #0c0c0c !important;
}

  .rotate{
  animation: rotation 2s infinite linear;
  }
@keyframes rotation {
  from {
  transform: rotate(0deg);
  }
  to {
  transform: rotate(359deg);
  }
}

.thebtn{

width: 60px;
/*height: 60px;*/
text-align: center;

position: absolute;
width: 100%;
bottom: 50px;
cursor: pointer;
border-radius: 60px;
font-size: 24px;
padding: 1rem;
}

.forkimg{
  background: rgba( 255, 255, 255, 0.20 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 0.0px );
-webkit-backdrop-filter: blur( 0.0px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );    height: 70px;
padding: 10px;
font-size: 25px;
border-radius: 46px;
}

.thebtnloading{
width: 60px;
/*height: 60px;*/
text-align: center;

position: absolute;
width: 100%;
bottom: 50px;
cursor:not-allowed;
border-radius: 60px;
font-size: 24px;
padding: 1rem;
display: none;
}

