/* © 2024 SwallowingAngels.com All rights reserved. */

* {
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    color:white;
    height: 100%;
    display: flex;
}

.video_container {
    border: none !important;
    background-color: white;
    position: relative;
    height: 700px;
    width: 400px;
    overflow: scroll;
    scroll-snap-type: y mandatory;
    margin: auto;
    -ms-overflow-style: none;  /* Hide scrollbars on IE and Edge */
    scrollbar-width: none;  /* Hide scrollbars on Firefox */
}

@media (min-width: 500px) {
    .video_container {
        width: 56vh;
        height: 100vh; 
        border-radius: 15px;
    }
}

@media (max-width: 500px) and (orientation: portrait) {
    .video_container {
        width: 50vh;
        height: 89vh; 
        border-radius: 10px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .video_container {
        width: 45vh;
        height: 80vh; 
        border-radius: 5px;
    }
}

.video_container::-webkit-scrollbar {
    display: none;
}

.video {
    border: none !important;
    position: relative;
    height: 100%;
    width: 100%;
    background-color: white;
    scroll-snap-align: start; 
    z-index: 1;  
}

.video_element {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.button {
    cursor: pointer;
    display: inline-block;
    font-size: 24px;
}

.home_position0
{
    position: absolute;
    top: 2%;
    left: 4%;
    z-index: 3;
}

.home_position
{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 3;
}

.square_position
{
    position: absolute;
    top: 1%;
    left: 1%;
}

.square {
    cursor: pointer;
    height: 32px;
    width: 32px;
    border-radius: 4px;
    background-color: black;
    opacity: 0.2;
    display: block;
    z-index: 3;
}

.square_position:hover .square {
    height: 32px;
    width: 32px;
    border-radius: 4px;
    background-color: #31D3F7;
    opacity: 1;
    display: block;
    z-index: 3;
}

.play_position
{
    position: absolute;
    top: 4%;
    left: 4%;
    z-index: 3;
}

.mute_position 
{
    position: absolute;
    top: 4%;
    right: 4%;
    z-index: 2;
    display: block;
}

.playButton {
    font-size: 24px;
    font-weight: bold;
    color: white;
    padding: 0;
    margin: 0;
    margin-top: 15px;
}

.muteButton {
    font-size: 24px;
    font-weight: bold;
    color: white;
    padding: 0;
    margin: 0;
    margin-top: 15px;
}

.spinner_location
{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
}

.copyright_position
{
    position: absolute;
    bottom: 0%;
    right: 4%;
    z-index: 3;
    display: block;
}

.modelname_location {
    margin-left: 10px;
    color: white;
    display: flex;
    flex: 1;
    position: absolute;
    bottom: 0;
}

.modelname {
    font-size: 2vh;
    padding : 0;
    margin : 0;
    font-size: smaller;
}

.copyright_location
{
    position: absolute;
    bottom: 0%;
    right: 4%;
    z-index: 3;
    display: block;
}

.copyright {
    font-size: 2vh;
    padding: 0;
    margin: 0;
    font-size: smaller;
}

/* © 2024 SwallowingAngels.com All rights reserved. */
