*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Roboto", 'arial',  sans-serif;
}


input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

/* width */

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
/* Track */

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.293);
}
/* Handle */

::-webkit-scrollbar-thumb {
	background: #2e2e2e;
    border-radius: 15px;
}
/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
	background: #e69e7c;
}

body{
    overflow-x: hidden;
    background-color: #0a0a0a;
    color: white;
}

/* Nav-bar Css */
.nav-bar{
    height: 60px;
    /* background-color: black; */
    justify-content: space-between;
    cursor: default;
    padding: 60px;
    position: fixed;
    width: 100%;
    top:0;
    z-index: 180;
    background: rgb(10,10,10);
    background: -moz-linear-gradient(0deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.9528186274509804) 19%, rgba(10,10,10,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.9528186274509804) 19%, rgba(10,10,10,1) 100%);
    background: linear-gradient(0deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.9528186274509804) 19%, rgba(10,10,10,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0a0a0a",endColorstr="#0a0a0a",GradientType=1);
}

.explore-nav{
    padding-bottom: 300px;
    background: linear-gradient(0deg, rgba(10,10,10,0) 0%, rgba(10, 10, 10, 0.60) 55%,rgb(10, 10, 10) 100%);
}.details-page-nav{
    padding-bottom: 100px;
    background: linear-gradient(0deg, rgba(10,10,10,0) 0%, rgba(10, 10, 10, 0.80) 55%,rgb(10, 10, 10) 100%);
}

#logo{
    height: 22px;
}

.nav-bar a{
    text-decoration: none;
    color: white;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
    font-weight: 400;
    margin: 0px 10px;
    transition: .2s;
}

.nav-bar a, .nav-bar span{
    opacity: .3;
}

.nav-bar a:hover{
    opacity: 1;
}


.nav-bar nav{
    margin-top: -2px;
    position: absolute;
    left: 50%;
    transform: translate(-50%,0%);
}


.nav-bar .selected{
    opacity: 1;
    border-bottom: 1px solid #f2aa66c2;
}

#nav-end, .nav-bar{
    display: flex;
    align-items: center;
}
#nav-end img{
    margin-right: 10px;
    height: 15px;
    opacity: .6;
    transition: .2s;
    cursor: pointer;
}#nav-end img:hover,#nav-end a:hover{
    opacity: 1;
}#nav-end a{
    opacity: .6;
}

.ham-bugger{
    cursor: pointer;
}

.mobile-nav{
    display: none;
}.streamingServiceMob{
    margin-top: -7px;
    height: 23px;
    cursor: pointer;
    opacity: 1;
    transition: .2s;
    display: none;
}#streamingServiceMobCon{
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.ham-bugger div{
    height: 2px;
    width: 20px;
    background-color:white;
    border-radius: 5px;
    margin-bottom:5px;
    transition: .2;
}

.mobile-menu{
    width: 100%;
    position: fixed;
    height: 100vh;
    left: 0;
    background-color: rgba(10, 10, 10, 0.99);
    top:0px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items:center;
    display: none;
}
.show-mobile-menu{
    display: flex;
}
.show-mobile-menu ~ .ham-bugger{
    position: fixed;
    z-index: 1001;
    opacity: .5;
    right: 30px;
}.show-mobile-menu ~ .ham-bugger div:nth-child(2){
    opacity: 0;
}.show-mobile-menu ~ .ham-bugger div:first-child{
    transform:  translateY(7px) rotate(45deg);
}.show-mobile-menu ~ .ham-bugger div:last-child{
    transform: translateY(-7px)  rotate(-45deg);
}

.ham-bugger:hover{
    opacity: 1;
}


.mobile-menu nav{
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: space-between;
    align-items: center;
    height: 350px;
}.mobile-menu nav a{
    font-size: 16px;
}

.mobile-nav-icon{
    z-index: 1001;
    height: 20px;
    position: fixed;
    right: 30px;
    margin-top: 50px;
    opacity: .5;
    top:40px;
    cursor: pointer;
}.mobile-search{
    margin-top: 100px;
}.mobile-nav-icon:hover{
    opacity: 1;
}
/* End of Nav-bar Css */


/* Background Light */
.background-light-con{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
}
.background-light{
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    filter: blur(110px);
}
#left{
    left:150px;
    background-color: #af2319;
    animation: updown 14s ease alternate infinite, opacity 10s ease alternate infinite, flipColor 10s alternate infinite ;
}#right{
    right:150px;
    background-color: #2a88dd;
    animation: updown 22s ease alternate infinite , opacity 5s ease alternate infinite,  flipColor 10s alternate-reverse infinite;
}#middle{
    left:50%;
    bottom: 100px;
    transform: translateX(-50%);
    background-color: #417000;
    animation: updown 8s ease alternate infinite, opacity 15s alternate ease infinite, flipColor2 10s alternate infinite;
}

@keyframes flipColor{
    0%{
        background-color: #af2319;
    }100%{
        background-color: #2a88dd;
    }
}
@keyframes flipColor2{
    0%{
        background-color: #257000;
    }100%{
        background-color: #9e5802;
    }
}


@keyframes opacity {
    0%{
        opacity: .2;
    }100%{
        opacity: .5;
    }
}

@keyframes updown {
    0%{
        top:10%
    }100%{
        top:80%
    }
}

/* End Background Light */



/* Landing Page */
#landing-page{
    z-index: 3;
    position: absolute;
    width: 100%;
    padding-top: 30px;
    margin-top: 100px;
}
h1{
    font-size: 50px;
    width: 440px;
    color: white;
}h1 span{
    color: #f2a966;
}

#landing-page-intro{
    display: flex;
    justify-content: space-between;
    padding: 0px 60px;
}
#landing-page-intro > section{
    margin-top: 30px;
}#landing-page-intro > section > p{
    margin-top: 20px;
    opacity: .5;
    width: 350px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
}.button{
    margin-top: 40px;
    padding: 12px 25px;
    border-radius: 50px;
    color: white;
    cursor: pointer;  
    transition: .3s;
}.primary-btn{
    background-color:#1c4e7a;
    border: 1px solid transparent;
}.primary-btn:hover{
    border: 1px solid rgba(255, 255, 255, 0.384);
    background-color: transparent;
}
/* Container for images on the right */
#landing-page-images-con{
    display: flex;
    flex-direction: column;
}#landing-page-images-con > div{
    margin-bottom: 24px;
    display: flex;
    transition: .2s;
}#landing-page-images-con #first-img-con{
    margin-left: 100px;
}.landing-page-images {
    position: relative;
    display: flex; 
    width: fit-content;
    margin-left: 24px;
    cursor: pointer;
}
.landing-page-images > img{
    width: 180px;
    height: 210px;
    border-radius: 10px;
    object-fit: cover;
    transition: .2s;
    border-width: 5px;
    border-color: rgba(255, 255, 255, 0);
}.landing-page-images:hover > img{
    background-color: #0a0a0a;
    border-color: #ffffff;
    border-width: 4px;
    filter:brightness(80%) saturate(0);
    box-shadow: -5px 10px 0.4rem rgba(0, 0, 0, 0.774) , 4px -4px 1rem rgba(255, 255, 255, 0.014);
}.landing-page-images h2{
    position: absolute;
    text-align: center;
    top: 51%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: .3s;
}.landing-page-images:hover > h2{
   opacity: 1;
   top:50%;
   text-shadow: 0 4px .2rem black;
}
/* End of Landing Page */


/* Landing Page Features */

#landing-page-features{
    background: rgb(10,16,17);
    background: -moz-linear-gradient(0deg, rgba(10,16,17,1) 0%, rgba(10,15,16,1) 19%, rgba(10,13,14,1) 42%, rgba(10,12,13,1) 60%, rgba(10,11,11,1) 82%, rgba(10,10,10,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(10,16,17,1) 0%, rgba(10,15,16,1) 19%, rgba(10,13,14,1) 42%, rgba(10,12,13,1) 60%, rgba(10,11,11,1) 82%, rgba(10,10,10,0) 100%);
    background: linear-gradient(0deg, rgba(10,16,17,1) 0%, rgba(10,15,16,1) 19%, rgba(10,13,14,1) 42%, rgba(10,12,13,1) 60%, rgba(10,11,11,1) 82%, rgba(10,10,10,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0a1011",endColorstr="#0a0a0a",GradientType=1);
    padding-bottom: 60px;
}

#landing-page-features{
    padding-top: 60px;
}
#landing-page-features-intro-con{
    display: flex;
    justify-content: space-between;
}#landing-page-features-intro-con img{
    height: 100px;
    margin: 100px;
    margin-left: 150px;
    animation: bounce 1.5s ease  alternate infinite;
}
@keyframes bounce {
    0%{
        transform: translateY(0px);
    }100%{
        transform: translateY(10px);
    }
}
#landing-page-features-intro{
    padding: 60px;
    padding-left: 40px;
    padding-right: 130px;
    margin-right: -70px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='83' ry='83' stroke='white' stroke-width='5' stroke-dasharray='8%2c12' stroke-dashoffset='0' stroke-linecap='round'/%3e%3c/svg%3e");
    border-radius: 83px;
    height: fit-content;

}
#landing-page-features-intro h2{
    font-size: 42px;
    width: 600px;
    text-align: right;
}
#landing-page-features-intro span{
   color: #f2a966;;
}

#landing-page-features-contents{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px 43px;
}

.singleFeature{
    margin: 8px;
    text-align: center;
    padding: 30px 0px;
    padding-bottom: 30px;
    cursor: pointer;
    width: 170px;
    border-radius: 40px;
    background-color: rgba(255, 255, 255, 0.031);
    box-shadow: 0px 0px .5rem rgba(0, 0, 0, 0.218);
    transition: .5s;
    height: fit-content;
}.singleFeature:hover{
    box-shadow: -5px 10px 1rem rgba(0, 0, 0, 0.637);
}.singleFeature img{
    height: 70px;
    width: 70px;
    object-fit: contain;
    margin-bottom: 12px;
}.singleFeature h3{
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
}.singleFeature:nth-child(even){
    margin-top: 50px;
}
/* End Of Landing Page Features */

/* FAQ Section */
#FAQ{
    background-color: #0a1011;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 60px;
    padding-bottom: 150px;
}#FAQ h2{
    font-size: 35px;
    margin-bottom: 50px;
}
.single-faq{
    margin-top: 20px;
    max-width: 800px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.147);
}.single-faq h3{
    font-weight: 300;
    font-size: 17px;
}.single-faq p{
    overflow: hidden;
    font-weight: 300;
    margin-top: 12px;
    font-size: 15px;
    height: 0px;
    margin-bottom: 10px;
    transition: .5s;
    text-overflow: ellipsis;
    opacity: 0;
}.opened-faq p{
    height: 50px;
    opacity: .5;
    margin-bottom: 20px;
}
.arrow{
    transform: rotate(225deg);
    border-color: white;
    border-top: 1px solid;
    border-left: 1px solid;
    width: 10px;
    height: 10px;
    cursor: pointer;
    opacity: .3;
    transition: .5s;
    box-shadow: 0px 0px .5rem black;

}.arrow:hover{
    opacity: .8;
}
.single-faq-title{
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
/* End of FAQ */

/* Footer Design */
footer{
    background-color: rgb(10, 16, 17);                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
    padding: 60px;
}
#top-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.199);
    padding-bottom: 20px;
}
#top-footer > img{                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
    height: 30px;
}#top-footer > section img{
    margin-left: 15px;
    cursor: pointer;  
    opacity: .3;     
    transition: .2s;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
}                                                                                                                                                                                                                                                                                                                                                                                                                       
#facebook{
    height: 22px;
}
#top-footer > section img:not(#facebook){
    width: 22px;
}#top-footer > section img:hover{
    opacity: .7;
}

#bottom-footer{
    margin-top: 25px;
    display: flex;
    align-items: center;
    font-weight: 300;
    font-size: 14px;
}#bottom-footer p{
    opacity: .3;
    margin-right: 30px;
}#bottom-footer a{
    color: white;
    text-decoration: none;
    opacity: .3;
    margin-left:20px;
    transition: .2s;
}#bottom-footer a:hover{
    opacity: .8;
}
/* End of Footer Design */    



#carosal,#details-page-data{
    position: relative;
}
#details-page-data{
    overflow-x: hidden;
}
#carosal img,.DbackgroundImage {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
#carosal-details, #details-page-downShadow{
    position: absolute;
    z-index: 5;
    bottom: 0;   
    padding: 60px;
    padding-top: 150px;
    width: 100%; 
    background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10, 10, 10, 0.656) 45%,rgb(10, 10, 10) 100%);

}#carosal-details h1{
    white-space:nowrap;
    font-size: 42px;  
    font-weight: 600;
}#carosal-details h2{
    opacity: .7;
    font-size: 20px;
    margin-top: 5px;
    letter-spacing: 1px;
    font-weight: 400;
}#carosal-details h2 sup{
    font-size: 13px;
}.explore-btn{
    font-size: 18px;
    color: #1f1f1f;
    font-weight: 600;
    margin-top: 30px;
    background-color: #ffd57b;
    margin-bottom: 20px;
    padding: 13px 35px;
    border-radius: 50px;
    cursor: pointer;  
    border: 1px solid transparent;
    transition: .3s;
}.explore-btn:hover{
    border-color: #ffffffbf;
    color: #ffffffbf;
    background-color: rgba(255, 255, 255, 0);
}

/* Vertical Scroll */
.vertical-scroll-con{
    position: relative;  
    padding: 30px 0px;  
}.vertical-scroll-con h4{
    margin-left: 60px;
}
.vertical-scroll{
    padding: 0px 60px;
    overflow-x: scroll;
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}.vertical-scroll::-webkit-scrollbar{
    display: none;
}.vertical-scroll-content{
    margin-top: 30px;
    width: fit-content;
    display: flex;
    overflow-y: hidden;
}.vertical-scroll-item,.emptyCard{
    position: relative;
    width: fit-content;
    height: fit-content;
    cursor: pointer; margin-right: 20px;
    border-radius: 10px;
    width: 220px;
    height: 270px;
}.vertical-scroll-item:not(.emptyCard) img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: .2s;
    border-width: 5px;
}.vertical-scroll-item-date{
    background-color: #181818;
    position: absolute;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    top:20px;
    left: -8px;
    font-weight: 600;
    box-shadow: 5px 5px 1rem #0a0a0a83;
}.vertical-scroll-item-date sup{
    font-size: 8px;
    margin-right: 5px;
}

.hidden-gradient{
    z-index: 6;
    height: 280px;
    width: 100px;
    position: absolute;
    margin-top: 25px;
}
.left-gradient{
    background: linear-gradient(-90deg, rgba(10,10,10,0) 0%, rgba(10, 10, 10, 0.60) 50%,rgb(10, 10, 10) 100%);
}
.right-gradient{
    background: linear-gradient(90deg, rgba(10,10,10,0) 0%, rgba(10, 10, 10, 0.60) 50%,rgb(10, 10, 10) 100%);
    right: 0;
}

.arrow-con{
    position: absolute;
    /* background-color: rgba(32, 32, 32, 0.322); */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    top:50%;
    transform: translateY(-50%);
    margin-top: 30px;
    box-shadow: 5px 5px 1.3rem #0a0a0aa2;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.151);
    filter: blur(.2px);
    opacity: 0;
}.arrow-con .arrow{
    border-color: white;
    opacity: 1;
    border-width: 2px;
}.left-arrow-con{
    left:35px;
}
.right-arrow-con{
    right:35px ;
}
.right-arrow-con .arrow{
    transform: rotate(135deg);
    margin-left: -5px;
}.left-arrow-con .arrow{
    transform: rotate(-45deg);
    margin-left: 5px;
}
.vertical-scroll-item h2{
    position: absolute;
    z-index: 11;
    bottom: 30px;
    left: 50%;
    transform: translate(-30%, 0px);
    opacity: 0;
    transition: .2s;
    white-space: nowrap;
}

.vertical-scroll-item:hover img{
    filter: brightness(.2);
}

.vertical-scroll-item:hover h2{
    transform: translate(-50%, -10px);
    opacity: 1;
}

.emptyCard{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0);
    opacity: .5;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.010) 0%, rgba(255, 255, 255, 0.024) 100%);
}
.emptyCard img{
    width:40% ;
    opacity: .2;
}


.black-footer{
    background-color: #0a0a0a;
}
/* End of Vertical Scroll */

/* Stream Page */
.static-light{
    position: fixed;
    z-index: 0;
}.static-light .background-light{
    z-index: 0;
}.openStreammingDevices{
    display: none;
}

#streamPage{
    margin-top: 100px;
    display: flex;
    padding: 60px;
    padding-top:30px;
    z-index: 2;
    position: relative;
    min-height: 100vh;
    width: 100%;
}

.streaming-devices{
    min-width: 300px;
    width: 300px;
    transform: translateX(0px);
    padding: 25px;
    border-radius: 12px;
    background-color:rgba(255, 255, 255, 0.024) ;
    position: sticky;
    top:130px;
    left: 60px;
    margin-right: 30px;
    bottom: 30px;
    height: fit-content;
    transition: .3s;
    opacity: 1;

}.streaming-device-title{
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-right: 20px;
}#closeStreamDevIcon{
    display: none;
}
.close-icon{
    position: relative;
    cursor:pointer;
}.close-icon div{
    width: 18px;
    height: 3px;
    border-radius: 5px;
    background-color:rgba(255, 255, 255, 0.377) ;
    position: absolute;
}.close-icon div:first-child{
    transform: rotate(45deg);
}.close-icon div:not(.close-icon div:first-child){
    transform: rotate(-45deg);
}
.streaming-devices h4{
    color: #f2a966;
    font-size: 15px;
}
.single-streaming-device{
    border-radius: 10px;
    display: flex;
    padding: 14px ;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.055);
    margin-bottom: 15px;
}
.device-name{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}
.mac-address{
    font-size: 13px;
    opacity: .5;
}.delete-icon{
    height: 18px;
    opacity: .4;
    cursor: pointer;
}.delete-icon:hover{
    opacity: .8;
}

.streaming-devices button{
    width: 100%;
    padding: 9px 20px;
    border-radius: 7px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    margin-bottom: 40px;
}
.streaming-devices p{
    font-size: 13px;
    opacity: .4;
}
.overlay{
    display: none;
    animation: .4s fadeIn;
}
@keyframes fadeIn  {
    0%{
        opacity: 0;
    }100%{
        opacity: 1;
    }
}
#streams{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-content: flex-start;
}

@supports (display: grid) {
	#streams {
		display: grid;
		grid-gap: 25px;
        margin: 0px;
		justify-items: unset;
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	}
}

.single-stream{
    min-width: 235px;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    height: fit-content;
    cursor: pointer;
    border-radius: 10px;
    margin: 0px 10px;
    margin-bottom: 20px;
    transition: .2s;

}.single-stream:hover .single-stream-main-image{
    filter: brightness(.8);
}
.single-stream-main-image{
    width: 100%;
    height: 150px;
    margin-bottom: 8px;
    object-fit: cover;
}.single-stream-details{
    display: flex;
    position: relative;
    align-items: flex-start;
}.single-stream-main-logo{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}.single-stream-details h5{
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: wrap;
    height: fit-content;
    margin-bottom: 10px;
    max-width: 100%;
}.single-stream-details p{
    font-size: 13px;
    opacity: .5;
}

.image-fader{
    width: 100%;
    height: 20px;
    position: absolute;
    top:130px;
    background-image: linear-gradient(0deg, #0a0a0aec 0%, rgba(10, 10, 10, 0) 100% );
    z-index: 5;
}
/* End of Stream Page */



/* Details Page */
#left-layer{
    position: absolute;
    left:0;
    height: 100%;
    background-color: #257000;
    width: 100%;
    background: linear-gradient(-90deg, rgba(10,10,10,0) 0%, rgba(10, 10, 10, 0.60) 55%,rgb(10, 10, 10) 100%);

}
#details-page-details{
    position: absolute;
    top: 130px;
    left:60px;
    right: 60px;
    z-index: 10;
}#details-page-details h1{
    /* font-size: 45px; */
    margin-bottom: 8px;
    max-width: 800px;
    width: 100%;
}

.more-details-section{
    margin-top: 40px;
}

.more-details-section div{
    margin-bottom: 10px;
    font-size: 15px;
}

.details-notice{
    opacity: .5;
    font-size: 13px !important;
}

.details-button-group, .details-but2,.tooltip-con{
    display: flex;
    position: relative;
    align-items: center;
}.details-button-group img{
    height: 45px;
    margin-top: 5px;
    cursor:pointer;
    transition: .2s;
}.details-button-group button{
    margin-right: 10px;
    font-size: 16px;
    white-space: nowrap;
}.details-btn{
    background-color: transparent;
    border-color: white;
    color: white;
    opacity: .8;
}.tooltip{
    position: absolute;
    background-color: white;
    font-size: 12px;
    white-space: nowrap;
    color: #0a0a0a;
    border-radius: 8px;
    top:-30px;
    left: 50%;
    transform: translateX(-50%);
    transition: .2s;
    height: 0px;
    overflow: hidden;
    padding: 0px;
    opacity: 0;

}.bottomtooltip{
    top: auto;
    bottom: -40px;
    left: auto;
    transform: none;
    right: 0;
}
.details-but2{
    width: fit-content;
    height: fit-content;
    margin-right: 10px;
}
.tooltip-con:hover .tooltip{
    opacity: 1;
    padding: 6px 12px;
    height: 25px;
}


.details-details{
    font-size: 13px;
    max-width: 500px;
    margin-top: 35px;
    line-height: 21px;
    opacity: .5;
}
/* End of details Page */


/* Login Start */
.transparent-nav{
    background-image: none;
    background-color: #0a0a0a;
    background: linear-gradient(0deg, rgba(10,10,10,0) 0%, rgba(10, 10, 10, 0.80) 35%,rgb(10, 10, 10) 100%);

}
.transparent-nav div{
    opacity: .6;
    cursor: pointer;
    transition: .2s;
    font-size: 14px;
}
.transparent-nav div:hover{
    opacity: .8;
}


.login-container{
    width: 430px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.014);
    border-radius: 12px;
    top: 120px;
    left: 50%;
    transform: translate(-50%,0%);
    padding: 16px;
}
.login-container-header{
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-evenly;
}.login-menu{
    width: 100%;
    padding: 20px 0px;
    font-size: 14px;
    cursor: pointer;
    opacity: .3;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.322);
}.login-container-header > span{
    position: absolute;
    opacity: .2;
}.login-menu-selected{
    border-color: #f2a966;
    opacity: 1;
}.login-container form{
    padding: 30px
}.login-error{
    font-size: 13px;
    opacity: .5;
    color: #f2a966;
    height: 0px;
    overflow: hidden;
    transition: .2s;
    opacity: 0;
}.show-error{
    opacity: 1;
    height: auto;
    margin-bottom: 25px;
}.form-inputBox{
    width: 100%;
    position: relative;
    margin-bottom: 18px;
}.form-inputBox > div{
    /* This is the title of the input box */
    font-size: 13px;
    margin-bottom: 10px;
    color:#ffffff43;
}.form-inputBox input, .settings-form select, .form-inputBox textarea{
    width: 100%;
    padding: 12px 15px;
    color:rgba(255, 255, 255, 0.623);
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid #ffffff43;
}
.invalid-field input{
    border-color: #f2aa6667;
    color:#f2aa6667;
}.invalid-field div{
    color:#f2aa6667;
}

.form-footer{
    display: flex;
    align-items: center;
    margin-top: 30px;
    justify-content: space-between;
}

.form-footer div{
    /* forgot password div */
    font-size: 13px;
    cursor: pointer;
    color: #ffffff2d;

}
.login-btn{
    background-color: #f1b55a;
    padding: 10px 25px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: .2s;
}.login-btn:hover{
    border-color: rgba(255, 255, 255, 0.349);
    background-color: transparent;
    color: white;
}
.login-outer-footer{
    position: absolute;
    bottom: -140px;
    padding-bottom: 100px;
    font-size: 13px;
    align-items: flex-start;
    display: flex;
    justify-content: center;
    width: 100%;
    opacity: .2;
    left: 8px;

}.join-footer{
    justify-content: flex-end;
}
.login-outer-footer a{
    color: white;
    margin: 0px 30px;
}.confirmBox{
    padding: 30px;
}
.confirmBoxMessage{
    font-size: 13px;
    margin-top: 20px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.479);
}.confirmBoxMessage span{
    color: white;
}.confirmBox button{
    width: 100%;
    background-color: white;
    padding: 10px;
    margin-top: 45px;
    cursor: pointer;
    border-radius: 8px;
    color: #0a0a0a;
    border:1px solid transparent;
    transition: .2s;
}.confirmBox button:hover{
    color: white;
    border-color: white;
    opacity: .5;
    background-color: transparent;
}.btn-ful{
    width: 100%;
}


.account-type{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    font-size: 13px;
}.account-type div{
    border: 1px solid white;
    border-radius: 10px;
    padding: 14px 20px;
    width: 47%;
    transition: .1s;
    opacity: .2;
    cursor: pointer;
}.account-type div:not(.selected-account):hover{
    opacity: .4;
}.account-type .selected-account{
    border-color: transparent;
    background-color: rgb(245, 245, 245);
    opacity: 1;
    color: black;
}


.Text-and-help{
    width: 100%;
    padding: 14px 30px;
    display: flex;
    font-size: 13px;
    align-items: center;
    color: rgba(255, 255, 255, 0.233);
}
.learn-more{
    margin-left: 15px;
    width: 8px;
    height: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.719);;
    border: 1px solid rgba(255, 255, 255, 0.719);
}

.login-container-title{
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding: 20px;
}
.form-inputBox .login-message{
    font-size: 12px;
    margin-top: 10px;
    opacity: .7;
}
/* Login end */

input::-webkit-inner-spin-button,
::-webkit-inner-spin-button{
    appearance: none;
    margin: 0;
}

/* Cart Page */

#cart-page-con{
    padding: 100px 0px;

}#cart-page-data-con{
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 60px;
}
#cart-page-nav{
    font-weight: 600;
    display: flex;
    align-items: center;
   padding: 60px;
   padding-bottom: 30px;
   top: 0px;
    position: fixed;
    width:100%;
    background: linear-gradient(180deg,#0a0a0a 10%, #0a0a0ae8 50%, #0a0a0a5e 100%);
    z-index: 100;
}
.checkout-con{
    width: 400px;
    height: 100vh;
    background: linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.014) 15%,transparent 90%);
    position: sticky;
    top: 60px;
    padding: 30px;
}.cart-summery-title{
    font-weight: 600;
    color: rgba(255, 255, 255, 0.897);
}.cart-summary{
    width: 100%;
    margin-top: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.678);
    border-collapse: collapse;
    margin-bottom: 40px;
}.cart-summary td{
    padding: 4px 0px;
    width:fill;
}.cart-summary  span{
    color: #ffc876;
}.cart-summary tr:last-child{
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}.cart-summary tr:nth-last-child(2) td{
    padding-bottom: 17px;
}.cart-summary tr:last-child td{
    padding-top: 13px;
}

.single-payment-method{
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 8px 15px;
    border-radius:15px;
    margin: 14px 0px;
    cursor: pointer;
    transition: .1s;
    font-size: 15px;
}.single-payment-method:hover{
    background-color: rgba(255, 255, 255, 0.062);
}

.single-payment-method.active{
    color:#0a0a0a;
    background-color: rgba(255, 255, 255, 0.938);
}

.single-payment-method img{
    height: 30px;
}

.arrow-head{
    border: 2px solid rgba(255, 255, 255, 0.8);;
    height: 12px;
    width: 12px;
    border-radius: 2px;
    transform: rotate(45deg);
    border-top: 0px;
    border-right:0px;
}
.arrow-tail{
    width: 25px;
    border-radius: 2px;
    height: 2px;
    transform: translateX(-11px);
    background-color: rgba(255, 255, 255, 0.8);
}.real-arrow{
    display: flex;
    align-items: center;
    cursor: pointer;
}


.cart-cards-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cart-card{
    max-width: 500px;
    min-width: 350px;
    height: fit-content;
    padding: 25px;
    position: relative;
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.014);
}.cart-title{
    font-weight: 600;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.897);
    margin-bottom: 5px;
}.cart-date{
    font-weight: 300;
    opacity: .5;
    font-size: 15px;
}.collection-of-emails{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0px;
}.Single-recipient{
    position: relative;
    display: flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 7px;
    background-color: rgba(255, 255, 255, 0.048);
}.cart-card-header{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
}

.cart-remove-item{
    opacity: .4;
    margin-top: -10px;
}.Single-recipient-delete div{
    width: 13px;
    height: 2px;
    opacity: .4;
}.Single-recipient-email{
    margin-left: 25px;
}.Single-recipient-email{
    font-size: 13px;
    opacity: .5;
}

.email-input{
    display: flex;
}.email-input input{
    flex-grow: 1;
    margin-right: 5px;
    padding: 8px 12px;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.863);
    background-color: transparent;
    border:1px solid rgba(255, 255, 255, 0.11);
}#cart-page-data-con button{
    background-color: #f4b860;
    border: 1px solid #f4b860;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}.checkoutbutton{
    font-size: 16px;
    margin-top: 30px;
    margin-left: auto;
    transition: .2s;
}.checkoutbutton span{
    margin-left: 50px;
    font-size: 16px;
}.checkoutbutton:hover{
    color: white !important; 
    background-color: transparent !important;
    border-color: white !important;
    font-weight: 400;
}.cart-gift-info{
    font-size: 13px;
    font-weight: 200;
    margin-top: 12px;
    opacity: .3;
}.checkboxLabel{
    display: flex;
    cursor: pointer;
    font-size: 14px;
}
.checkboxLabel input{
    width: 0px;
    height: 0px;
    position: absolute;
    opacity: 0;
}

.checkBoxNew{
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border:1px solid rgba(255, 255, 255, 0.534);
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0px;
}

.checker{
    height: 5px;
    width: 10px;
    transform: rotate(-45deg);
    margin-top: -3px;
}.cart-gift{
    transition: .4s;
    margin-top: 15px;
}
.hide-gift{
    height: 0px;
    margin: 0px;
    overflow: hidden;
}
.checkboxLabel input:checked ~ .checkBoxNew .checker{
   border-bottom: 2px solid #f4b860 ;
   border-left: 2px solid #f4b860 ;
}.checkboxLabel input:checked ~ .checkBoxNew{
    border-color: #f4b860;
}
.cart-item-bottom-sec{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    color: rgba(255, 255, 255, 0.685);
}

/* End of Cart Page */




/* Admin */
.Admin-container{
    position: absolute;
    width: 100%;
    margin-top: 140px;
    z-index: 100;
    padding-right: 60px;
    /* background-color: #1c4e7a; */
}
.admin-side-nav{
    width: fit-content;
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 200px;
}
.side-nav-item{
    opacity: .2;
    padding: 18px 60px;
    font-size: 15px;
    transition: .2s;
    cursor: pointer;
    color: white;
    text-decoration: none;
}.side-nav-item.selected{
    opacity: 1;
    background:linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0) 100%);
}.side-nav-item:hover:not(.selected){
    background:linear-gradient(90deg, rgba(255, 255, 255, 0.034) 0%, rgba(255, 255, 255, 0) 100%);
}

.admin-contents{
    margin-left: 250px;
    padding-top: 20px;
    font-size: 15px;
    width: fill;
    margin-bottom: 50px;
    /* background-color: red; */
}
.title-group{
    display: flex;
    justify-content: space-between;
}
.admin-table-con{
    background-color: rgba(255, 255, 255, 0.014);
    overflow: hidden;
    border-radius: 10px;
    margin: 20px 0px;
    /* padding-bottom: 10px; */
}

.Admin-table table{
    width: 100%;
    border-collapse: collapse;
    
}.Admin-table table tr td:first-child{
    /* background-color: rebeccapurple; */
    padding-right: 0px;
}.Admin-table table tr td{
    padding:20px;
}
.Admin-table table tr:first-child td{
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.068);
}.Admin-table table tr:not(tr:first-child) td{
   color: rgba(255, 255, 255, 0.384);
}.Admin-table table tr:nth-child(odd):not(tr:first-child) td{
    background-color: rgba(255, 255, 255, 0.021);
}

.admin-btn,.admin-secondary-btn{
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #f1b55a;
    background-color:#f1b55a ;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
    color: black;
}.admin-btn:hover{
    background-color: #dfa246;
}

.admin-secondary-btn{
    background-color: transparent;
    color:#f1b55a ;
    opacity: .7;
}

.border-less-btn{
    color:#f0c079;
    cursor: pointer;
}
.border-less-btn:hover{
    color: #f1b55a;
}

.solid-arrow{
    height: 0px;
    width: 0px;
    margin-top: 6px;
    border-top: 4px solid white;
    border-bottom:4px solid transparent;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}
.dropdown-text{
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    opacity: .5;
}

.admin-dropdown{
    position: relative;
}

.drop-down-items.opened{
    padding: 8px 5px;
    height: 150px;
    opacity: 1;
}

.drop-down-items{
    position: absolute;
    background-color: rgba(255, 255, 255, 0.938);
    border-radius: 8px;
    font-size: 13px;
    color: black;
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 8px;
    padding: 0px 5px;
    white-space: nowrap;
    top: 30px;
    height: 0px;
    overflow: hidden;
    transition: .3s;
    opacity: 0;
}.drop-down-items div{
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
}.drop-down-items div:hover{
    background-color: #00000017;
}

.dashboard-container{
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
}

.dashboardTitle{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    color:rgba(255, 255, 255, 0.733) ;
}
.dashboardbox{
    background-color: rgba(255, 255, 255, 0.014);
    width: fit-content;
    padding: 20px;
    min-width: 280px;
    border-radius: 12px;
}.price{
    font-size: 37px;
    font-weight: 700;
    color: #dfa246;
}.white-price{
    color: white;
}
.table-img,.table-img-header{
    padding: 0px  10px !important;
    text-align: center;
    width: 30px;  
}
.table-img img{
    width: 30px;
    height: 30px;
    border-radius: 5px;
    object-fit: cover;
    object-position: top;
}

.table-img-header img{
    height: 20px;
    margin-top: 8px;
}

.settings-form-con{
    max-width: 400px;
    padding: 20px;
    flex-grow: 1;
    padding-top: 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.014);
}
.settings-form{
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    gap:14px;
}
.settings-bottom-section{
    margin-top: 45px;
    display: flex;
    gap: 40px;
    /* /background-color: rebeccapurple; */
}
.right-btn{
    width: fit-content;
    align-self: flex-end;
    margin-top: 10px;
}.select-con{
    position:relative;
    display: flex;
    margin-bottom: 0px !important;
    align-items: center;
}.select-con .arrow{
    position: absolute;
    right: 15px;
    border-width: 2px;
    height: 8px;
    width: 8px;
    margin-top: -5px;
    border-color: white;

}.select-con select{
    appearance: none;
    font-weight: 400;
}.admin-table-bottom{
    width: 100%;
    display: flex;
    justify-content: space-between;
}.admin-table-bottom button{
    align-self: flex-start;

}
.pagination-container{
    display: flex;
    /* background-color: #1c4e7a; */
    justify-self: flex-end;
    align-items: center;
    gap:40px;
}.pagination-pages{
    display: flex;
    align-items: center;
}.pagination-pages div{
    height: 32px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
}.selected-page{
    background-color: rgba(255, 255, 255, 0.904);
    color: black;
    font-weight: 500;
}.pagination-btn{
    cursor: pointer;
    opacity: .2;
}.pagination-btn.active{
    opacity: 1;
}.payout-accounts-con{
    display: flex;
    margin-top: 20px;
    gap: 15px;
    flex-wrap: wrap;
}.payout-accounts-con img{
    height: 40px;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid white;
    filter:grayscale(100%) brightness(10000%);
    opacity: .3;
    transition: .2;
    cursor: pointer;
}.payout-accounts-con img.selected{
    background-color: white;
    filter: none;
    opacity: 1;
}
/* End Of Admin */



/* Form Pop-up */

.form-pop-up{
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #000000e3;
    z-index:1000;
    overflow: auto;
}

.form-box{
    max-width: 450px;
    margin: auto;
    margin-top:150px;
    background-color: rgb(20, 20, 20);
    padding:30px;
    border-radius: 10px;
    margin-bottom: 150px;
}
.form-pop-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
}.form-pop-header .close-icon{
    opacity: .5;
}
.form-box form{
    margin-top: 25px;
}.form-box input, .form-box textarea{
    margin-bottom: 10px;
}

.file-select{
    width: 100%;
    display: flex;
}
.file-select input{
    display: none;
}
.file-select label{
    width: 100%;
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    background-color: rgb(36, 54, 70);
}

.form-inputBox .admin-btn{
    color: black;
    width: fit-content;
    margin-left: auto;
    margin-top: 20px;
    margin-right: 0px;
}

.form-table-con{
    margin-top: 10px;
}.form-check-list{
 display: flex;
 flex-direction: column;
 margin-top: 15px;
 gap: 10px;
 margin-left: 5px;
}.form-table-title{
    color: #f0c079;
    margin-top: 15px;
}
.datePicker{
    filter: invert(1);
    color: rgba(0, 0, 0, 0.432) !important;
    border-color: rgba(0, 0, 0, 0.308) !important;
}

#timezone-offset, select{
    width: 100%;
    padding: 12px 10px;
    filter: invert(1);
    color:rgb(78, 78, 78);
    margin-bottom: 15px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid #2b2b2b43;
}
/* End of Form-pop-up */




/* single artist page */

.gridContainer{
    display: grid;
    grid-template-columns: 12fr 6fr;
    margin-top: 50px;
    padding: 60px;
    gap: 15px;
}
#sa-artist-profile{
    background-color: rgba(255, 255, 255, 0.014);
    display:flex ;
    min-height: 200px;
    padding: 30px;
    gap: 30px;
    border-radius: 10px;
}
#sa-artist-profile-pic{
    height: 100%;
    max-height: 170px;
    border-radius: 5px;
}#sa-artist-name{
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 14px;
}
#sa-artist-details{
    color: rgba(255, 255, 255, 0.473);
    line-height: 24px;
    font-size: 15px;
}

#sa-stream{
    border-radius: 5px;
    grid-row: span 2;
    height: fit-content;
    background-color: rgba(255, 255, 255, 0.014);
}


#sa-stream-title{
    width: 100%;
    display: flex;
    padding-left: 15px;
}

#sa-stream-title div{
    padding: 22px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    font-size: 14px;
    margin-top: -10px;
    cursor: pointer;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.137);
}

#sa-stream-title div.selected{
    background-color: rgb(20, 20, 20);
    color: white;
    box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.24);
}

.sa-event-card-con {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
    justify-content: flex-start;
}

.sa-event-card{
    display: flex;
    padding: 12px;
    margin: 0px 15px;
    gap: 10px;
    cursor: pointer;
    border-radius: 10px;
    transition: .2s;
}


.sa-event-card img{
    height: 70px;
    border-radius: 5px;
}
.sa-event-title{
    font-weight: 600;
    margin-bottom: 10px;
}
.sa-event-date , .sa-event-time{
    color: rgba(255, 255, 255, 0.459);
    font-size: 14px;
    margin-bottom: 5px;
}

#sa-video {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#sa-video video:playing{
    cursor: default;
}

#sa-play-trailers{
    position: absolute;
    height: 40px;
    cursor: pointer;
    transition: .2s;
    opacity: .8;
}

#sa-video:hover #sa-play-trailers{
    height: 45px;
    opacity: 1;
}
#sa-video video{
    width: 100%;
    border-radius: 10px;
}

.video-control{
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 20px;
    height: 100px;
    background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10, 10, 10, 0.459) 40%, rgba(10, 10, 10, 0.692) 100%);

}

#video-time{
    width: 100%;
    height: 10px;
}

#video-time {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background: #ffffff6b;
    background-image: linear-gradient(#ff4500, #ff4500);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    outline: none;
    opacity: 0.8;
    -webkit-transition: .2s;
    cursor: pointer;
    transition: opacity .2s;
  }
  
  #video-time:hover {
    opacity: 1;
  }
  
  #video-time::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ff4500;
    cursor: pointer;
    transition: .1s;
  }
  
  #video-time::-moz-range-thumb {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ff4500;
    cursor: pointer;
  }

  #video-time:hover::-webkit-slider-thumb{
    height: 8px;
    width: 8px;
  }

  #video-time:hover::-moz-range-thumb {
    height: 8px;
    width: 8px;
  }
  .video-button-control img{
    height: 16px;
    opacity: .9;
  }
  .video-button-control img:hover{
    opacity: 1;
  }
  .video-button-control{
    display: flex;
    font-size: 14px;
    margin-top: 15px;
    justify-content: space-between;
  }
  .video-bottom-left{
    display: flex;
    gap: 15px;
    align-items: center;
  }
  .orangeDotCon{
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .orangeDot{
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: #ff4500;
  }

/* end single page */




@media screen and (max-width: 1250px) {
    #landing-page-features-intro-con img{
        margin-left: 80px;
        height: 80px;
        margin-right: 0px;
    }
}

@media screen and (max-width: 1080px) {
    #landing-page-images-con  #first-img-con{
        margin-left:0px;
    }#landing-page-features-intro{
        background-image: none;
        margin-right: 60px;
        padding-right: 0px;
    }#landing-page-features-intro h2{
        min-width: 330px;
        max-width: 510px;
        width: auto;
        font-size: 40px;
    }
}
@media screen and (max-width: 1000px) {
   
    .landing-page-images > img {
        height: 180px;
        width: 150px;
    }h1{
        font-size: 40px;
        width: auto;
        max-width: 380px;
        margin-right: 10px;
    }#details-page-details h2{
        font-size: 18px;
    }

}
@media screen and (max-width: 840px) {
   
    .landing-page-images > img {
        height: 90px;
        width:85px;
        border-radius: 5px;
    }.landing-page-images h2{
        font-size: 16px;
    }#landing-page-intro{
        align-items: center;
    }.nav-bar,#streamPage, footer, #carosal-details, #details-page-downShadow {
        padding: 40px;
    }#details-page-details{
        left: 40px;
        right: 40px;
    }#streamPage{
        padding-top: 0px;
    }.vertical-scroll{
        padding: 0px 40px;
    }.vertical-scroll-con h4 {
        margin-left: 40px;
    }#carosal-details, #details-page-downShadow {
        padding-top: 250px;
        padding-bottom: 60px;
    }#FAQ{
        padding: 20px 40px;
        padding-bottom: 150px;
    }.mobile-nav{
        display: flex;
    }.hidden-nav-Items{
        display: none !important ;
    }#landing-page-intro{
        padding: 0px 40px;
    }#landing-page{
        padding: 0px;
    }h1{
        font-size: 34px;
        max-width: 295px;
    }
    #carosal-details h1{
        white-space: normal;
        max-width: 100%;
        margin-bottom: 15px;
    }

    #landing-page-features-intro h2{
        font-size: 34px;
    }#landing-page-features-intro {
        margin-right: 40px;
    }#landing-page-features-intro-con{
        justify-content: flex-end;
    }#landing-page-features{
        padding-top: 0px;
    }

    .singleFeature:nth-child(even){
        margin-top: 8px;
    }
    #details-page-details{
        top: 110px;
    }
    .streaming-devices{
        left: 40px;
        top: 95px;
        margin-right: 20px;
    }
}
@media screen and (max-width: 660px) {
    .landing-page-images > img{
        height: 50px;
        width: 50px;
        object-position: top;
        box-shadow: -2px 6px 0.4rem rgba(0, 0, 0, 0.507), 4px -4px 1rem rgb(255 255 255 / 1%);
    }.landing-page-images h2{
        display: none;

    }.landing-page-images:hover > img{
        filter: none;
    }
    #landing-page-images-con #first-img-con{
        margin-bottom: 0px;
    }
    #first-img-con .landing-page-images:first-child{
        transform: translateX(10px);
    }
    #landing-page-images-con div:not(#first-img-con){
        margin-left: -20px;
    }
    #landing-page-images-con > div{
        flex-direction: column;
    }.landing-page-images{
        margin: 0px;
        margin-bottom: 20px;
    }#bottom-footer{
        flex-direction: column-reverse;
        align-items: flex-start;
        
    }#bottom-footer section{
        margin-bottom: 30px;
    }#bottom-footer a{
        margin-left: 0px;
        margin-right: 10px;
        font-size: 13px;
    }#bottom-footer p{
        font-size: 13px;
        display: none;
    }.vertical-scroll-item, .emptyCard{
        height: 210px;
        width: 180px;
    }.hidden-gradient{
        height: 220px;
        margin-top: 25px;
        width: 30px;
    }.vertical-scroll-item h2 {
        position: absolute;
        z-index: 1;
        bottom: 0px;
        font-size: 16px;
        transform: translate(-50%, 0px);
        opacity: 1;
        transition: .2s;
        white-space: nowrap;
        width: 100%;
        padding-bottom: 19px;
        padding-top: 65px;
        text-align: center;
        background: linear-gradient(359deg, #0a0a0aea, transparent);
    }.vertical-scroll-item:hover h2{
        transform: translate(-50%, 0px);
    }.hidden-vertical-scroll-text{
        display: none;
    }
    .vertical-scroll-item:hover img{
        filter: none;
    }.streaming-devices{
        justify-content: space-between;
        position: fixed;
        z-index: 202;
        width: 100%;
        bottom: 0;
        border-radius: 25px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius:0px ;
        left: 0;
        right: 0;
        top: auto;
        margin-bottom: 0;
        background-color: hsl(0, 0%, 4%);
        padding-top: 30px;
    }.overlay{
        width:100%;
        height: 100%;
        background-color: rgba(17, 17, 17, 0.925);
        position: fixed;
        z-index:201;
        top: 0;
        left: 0;
    }#closeStreamDevIcon{
        display: block;
    }.streaming-device-title{
        margin-bottom: 35px;
    } .hide-stream{
        overflow: hidden;
        opacity: 1;
        transform: translateY(370px);
    }.openStreammingDevices{
        display: flex;
        position: absolute;
        top: 30px;
        left: 30px;
        padding: 8px 20px; 
        background-color: #da802c;
        border-radius: 15px;
        height: 60px;
        align-items: center;
        justify-content: center;
        z-index: 180;
        cursor: pointer;
        box-shadow: 0 0 2rem #000000;
    }.openStreammingDevices img{
        width: 25px;
        margin-right: 10px;
    }.streamingServiceMob{
        display: block;
    }
}

@media screen and (max-width: 595px) {
    #landing-page-features-intro-con img{
        height: 132px;
        margin-right: -100px;
    }.streamingServiceMob{
        opacity: 1;
    }
    .details-button-group button{
        font-size: 14px;padding: 13px 20px;
        margin-right: 12px;
    }
}
@media screen and (max-width: 548px) {
    #landing-page-intro{
        flex-direction: column;
        align-items: flex-start;
    }
    .landing-page-images > img{
        height: 100px;
        border-radius: 20px;
        width: 100%;
    }
    #landing-page-images-con{
        margin-top: 50px;
        flex-direction: row;
        width: 100%;
        overflow: hidden;
        height: fit-content;
        justify-content: space-between;
    }
    #first-img-con .landing-page-images:first-child{
        transform: none
    }
    #landing-page-images-con div:not(#first-img-con){
        margin-left: 0px
    }
    #landing-page-images-con > div{
        flex-direction: row;
        width: 48.5%;
        justify-content: space-between;
    }.landing-page-images{
        margin: 0px;
        margin-bottom: 0px;
        width: 46.5%;
    }
    .single-faq h3{
        font-size: 15px;
    }
    .opened-faq p {
        font-size: 14px;
    }
    
    .login-container{
        width: 85%;
    }.login-container form{
        padding: 30px 20px;
    }.account-type{
        padding: 0px 20px;
    }.Text-and-help{
        padding: 14px 20px;
    }

}
@media screen and (max-width: 470px) {
    #landing-page-features-contents{
        margin: 0px 30px
    }.singleFeature{
        margin: 5px;
        width: 160px;
        border-radius: 20px;
    }.singleFeature img{
        height: 60px;
        width: 60px;
    }.singleFeature:nth-child(even){
        margin-top: 5px;
    }
}

@media screen and (max-width: 425px) {
    .nav-bar,#streamPage, footer{
        padding: 30px;
    }#streamPage{
        padding-top: 0px;
    }#details-page-details{
        left: 30px;
        right: 30px;
    }.transparent-nav{
        padding: 40px 30px;
    }.vertical-scroll{
        padding: 0px 30px;
    }.vertical-scroll-con h4 {
        margin-left: 30px;
    }.right-arrow-con {
        right: 10px;
    }.left-arrow-con {
        left: 10px;
    }#carosal-details, #details-page-downShadow {
        padding: 30px;
        padding-top: 250px;
        padding-bottom: 40px;
    }#carosal-details h1{
        font-size: 30px;
    }#carosal-details h2,.explore-btn{
        font-size: 16px;
    }#landing-page-features-intro{
        margin-right: 30px;
        padding-left: 0px;
    }#FAQ{
        padding: 20px 30px;
        padding-bottom: 150px;
    }#landing-page-intro{
        padding: 0px 30px;
    }h1,#landing-page-features-intro h2{
        font-size: 28px;
    }#landing-page-intro > section > p{
        font-size: 13px;
        width: auto;
        max-width: 320px;
        line-height: 18px;
    }#landing-page-images-con{
        flex-direction: row;
    } #landing-page-features-intro-con img{
        height: 100px;
        margin-right: -40px;
        margin-left: 0px;
        margin-bottom: 70px;
    }#landing-page-features-intro h2{
        min-width: unset;
        width: 260px;
    }

    #landing-page-features-contents{
        margin: 0px 20px
    }.singleFeature{
        width: 150px;
    }
    .more-details-section div{
        font-size: 14px;
    }
    #watch-trailers{
        display: none;
    }.arrow-con{
        border: none;
    }
}

@media screen and (max-width: 375px) {
    .singleFeature{
        width: 120px;
    }
    .singleFeature img{
        height: 30px;
        width: 30px;
    }.singleFeature h3{
        white-space: unset;
        font-size: 13px;
    }#top-footer > img{
        height: 20px;
    }.login-container form{
        padding: 0;
        padding-top: 30px;
    }.login-container{
        width: 90%;
        top: 80px;
        background-color: transparent;
    }.account-type{
        padding: 0px;
    }.Text-and-help{
        padding: 14px 0px;
    }
}