html, body{
    box-sizing: border-box;
    margin: 0;
    position: relative;
    height: 100%;
}

body {
    background: black;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}

.swiper {
    width: 100%;
    height: calc(100% + 1px);
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
}
.swiper-slide video{
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.swiper-slide .modal-wrapper{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0px;
    top: 0px;
    justify-content: center;
    align-items: center;
    display: flex;
    opacity: 0;
}
.swiper-slide .modal{
    width: 50%;
    height: 50%;
    background: white;
    padding: 50px;
    -webkit-box-shadow: 4px 4px 32px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 32px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 32px 0px rgba(34, 60, 80, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-progress{
    width: 100%;
}
.controls-wrapper{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1000;
}
.controls{
    position: relative;
    width: 100%;
    height: 100%;
}
.controls-top {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    @media (max-width: 767px) {
        flex-direction: row;
        height: 4rem;
    }
}
.video-name{
    color: lightgray;
    font-weight: bold;
    background: #696969;
    border-radius: 1rem;
    padding: 0.4rem 0.8rem;
    @media (max-width: 767px) {
        border-radius: 1rem;
        padding: 0.4rem 0.8rem;
    }
}
#menu-btn{
    font-size: 25px;
    color: lightgray;
}
.controls-right{
    position: absolute;
    bottom: 10rem;
    right: 0px;
    width: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 1rem;
    padding: 0.2rem 1rem;
    @media (max-width: 767px) {
        width: 4rem;
    }
    background: black;
    .control-btn{
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: lightgray;
        i{
            font-size: 22px;
        }
        span{
            font-size: 16px;
        }
    }
}
.controls-bottom{
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.2rem 1rem;
    @media (max-width: 767px) {
        flex-direction: row;
        height: 4rem;
    }
    background: black;
    .control-btn{
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: lightgray;
        i{
            font-size: 22px;
        }
        span{
            font-size: 16px;
        }
    }
}
.controls-bottom-names{
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 4rem;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    div:nth-child(1){
        font-weight: bold;
        color: white;
    }
    div{
        text-align: left;
        text-overflow: ellipsis;
        text-shadow: 2px 2px 4px #000000;
        color: lightgray;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
    }
}
video{
    background: black;
}
#video1{
    margin-bottom: 3rem;
    @media (max-width: 767px){
        margin-bottom: 4rem;
    }
}
#share-btn{
    border-radius: 4rem;
    background: blue;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    aspect-ratio: 1;
    justify-content: center;
}
.video-progress{
    height: 10px;
    position: relative;
    cursor: pointer;
    @media (max-width: 767px){
        height: 20px;
    }
    .video-track{
        position: absolute;
        top: 3px;
        height: 3px;
        width: 100%;
        background: #696969;
        @media (max-width: 767px) {
            height: 14px;
        }
    }
    .video-position{
        position: absolute;
        top: 3px;
        background: white;
        height: 4px;
        left: 0px;
        width: 0px;
        border-radius: 10px;
        transition: width 0.5s;
        @media (max-width: 767px) {
            height: 14px;
        }
    }
    .video-tracker{
        position: absolute;
        background: white;
        width: 10px;
        height: 10px;
        border-radius: 10px;
        transition: left 0.5s;
        @media (max-width: 767px) {
            height: 20px;
            width: 20px;
        }
    }
}
.video-play{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: lightgray;
    font-size: 50px;
    border-radius: 50px;
    aspect-ratio: 1;
    background: rgba(0, 0, 0, 0.45);
    padding: 1rem;
    width: 58px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    @media (max-width: 767px) {
        width: 5rem;
        font-size: 60px;
        border-radius: 5rem;
    }
}
.d-none{
    display: none!important;
}
.login-form{
    position: fixed;
    z-index: 1000000;
    width: 100%;
    height: 100vh;
    background: black;
    top: 0px;
    color: white;
}

.btn-red {
    --bs-btn-color: #fff!important;
    --bs-btn-bg: #DC143C!important;
    --bs-btn-border-color: #DC143C!important;
    --bs-btn-hover-color: #fff!important;
    --bs-btn-hover-bg: #B22222!important;
    --bs-btn-hover-border-color: #B22222!important;
    --bs-btn-focus-shadow-rgb: 130, 138, 145!important;
    --bs-btn-active-color: #fff!important;
    --bs-btn-active-bg: #B22222!important;
    --bs-btn-active-border-color: #B22222!important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
    --bs-btn-disabled-color: #fff!important;
    --bs-btn-disabled-bg: #8B0000!important;
    --bs-btn-disabled-border-color: #8B0000!important;
    border-radius: 20px!important;
}
#menu-btn{
    cursor: pointer;
}
#menu-btn:hover{
    color: white;
}
.btn-back:hover{
    cursor: pointer;
    color: #A9A9A9;
}
#to-signup-btn, #to-login-btn, #to-forgot-btn{
    cursor: pointer;
}