@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400&display=swap');
*{
    box-sizing: border-box;
}
body{
    margin: 0;
    background-color: #1A1B1F;
    /*overflow: hidden;*/
    font-family: 'Roboto Condensed', sans-serif;
}
.filter_box{
    height: 100vh;
    width: 100vw;
    position: absolute;
    /* background-color: blanchedalmond; */
    filter:brightness(00%) ;
    z-index: 5;
    opacity: 1;
}
.row{
    color: rgb(150, 147, 147);
}
.video_container{
    height: 100vh;
    width: 60%;
    padding: 0;
    transition: 2s ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blink{
    opacity: 0.5;
}
.video{
    height: 100%;
    width: 100%;
    /* filter:invert(100%) ; */
}
.side_column{
    /* filter:invert(100%) ; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background-color: #1A1B1F;
}

/* *******************************LEFT SIDE**************************************** */
.back{
    position: absolute;
    top:2vh;
    left: 2vw;
    border-radius: 2rem;
    display: flex;
    box-shadow: 6px 6px 8px #101114, -6px -6px 8px #24252a;
    background: linear-gradient(145deg, #1c1d21, #17181c);
}
.back .fas{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.back_details{
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    transition: 5s
}
.back:hover{
    transform: scale(1.05);
    color: rgb(80, 220, 255);
}
.back:hover > .back_details{
    width: 60px;
    display: flex;
}

/* ********************************RIGHT SIDE************************************* */

.activeBtn{
    box-shadow: inset 1px 1px 1px red, inset -1px -1px 1px red;
    color: #29ffff;
}
.image{
    height: 100%;
    width: 25%;
}
.image img{
    height: 100%;
    max-width: 100%;
}
h5{
    width: 75%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery{
    position: absolute ;
    bottom: 10px;
}
.zoomBox{
    position: absolute;
    top: 5vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.zoomBox:hover{
    transform: scale(1);
}
.zoom{
    width: 50%;
}
.zoom:hover{
    transform: scale(1.06);
}
/* video functions*/
.record_animation{
    animation: animate 2s infinite ease-in-out;
}
.timer_box{
    height: 35px;
    width: 120px;
    position: fixed;
    top: 1.4rem;
    right: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: none;
    justify-content: space-evenly;
    align-items: center;
    background: #1A1B1F;
    border-radius: 2rem;
    box-shadow: inset 6px 6px 8px #101114, inset -6px -6px 8px #24252a;
}
.timerActive{
    display: flex;
}
.red_circle{
    height: 0.8rem;
    width: 0.8rem;
    border-radius: 50%;
    background-color: red;
}
@keyframes animate {
    0%{
        transform: scale(1.1);
    }
    50%{
        transform: scale(0.9);
    }
    100%{
        transform: scale(1.1);
    }
}

#popUpMsg {
    visibility: hidden;
    min-width: 200px;
    margin-left: -125px;
    background-color: #1A1B1F;
    color: rgb(201, 201, 201);
    text-align: center;
    padding: 0.7rem;
    position: fixed;
    z-index: 100;
    left: 55%;
    font-size: 20px;
    border-radius: 2rem;
  }
  
#popUpMsg.show {
    visibility: visible;
    animation:  fadeout 3s ease;
}

@keyframes fadeout {
0% {
    top: 0; 
    opacity: 0;
}
100% {
    top: 80px; 
    opacity: 1;
}
}

.popup_window{
    visibility: hidden;
    position: absolute;
    font-size: 20px;
    border-radius: 1.5rem;
    height: 15rem;
    width: 25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 200;
    background-color: #1A1B1F;
}
.popup_window.show{
    visibility: visible;
}
.name_box{
    height: 50%;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.enterBtnBox{
    height: 20%;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.label{
    font-size: 1.5rem;
    font-weight: 800;

}
.textBox{
    height: 40px;
    width: 50%;
    color: rgb(150, 147, 147);
    outline: none;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 10px;
    border-bottom: 1px solid rgb(150, 147, 147);
}
.enter{
    height: 40px;
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    outline: none;
}