
* {
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-snap-type: y mandatory;
}

body {
    font-family: Trebuchet MS;
    color: white;
    background-color: black;
    height: 100vh;
    display: grid;
    place-items: center;
    overflow-x: hidden;
}

.app__videos {
    position: relative;
    height: 100%;
    background-color: white;
    overflow: scroll;
    width: 100%;
    max-width: 500px;
    scroll-snap-type: y mandatory;
    border-radius: 20px;
}

.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: 60%;
    right: 0px;
    z-index: 1001;
}

.videoSidebar .material-icons {
    font-size: 28px;
    cursor: pointer;
    hover: black;
}

.videoSidebar__button {
    padding: 10px;
    text-align: center;
}

.videoFooter {
    position: relative;
    bottom: 200px;
    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;
}

.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;
}

.material-icons {
    line-height: 0.1 !important;
}

.buynow_text {
    background-color: #000;
    padding: 5px;
    text-decoration: none;
    color: white;
}


.sticky {
    position: fixed;
    width: 100%;
    height: 10px;
    margin-top: 30px;
    padding-left: 20px;
}


#footer {
    height: 40px;
    bottom: 0px;
    background: #000080;
    width: 100%;
    position: absolute;
}

/* Nav Bar */
.navbar {
    width: 100%;
    display: flex;
    margin: 0 auto;
    text-align: center;
    align-content: center;
    height: 100%;
    align-items: center;
}

.navbar a {
    padding: 0;
    color: white;
    text-decoration: none;
    font-size: 10px;
    margin: 0 auto;
}

/*.navbar a:hover { background-color: #efefef;}
.active {background-color: #04AA6D;}*/


@media (max-width: 425px) {
    .app__videos {
        width: 100%;
        height: 100%;
        max-width: 100%;
        border-radius: 0;
    }
}
