.videobox{
    position: fixed;
    top: 70px;
    left: 0;
    display: none;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: rgba(109, 109, 109, 0.715);
    z-index: 10;
}
.newbox{
    position: absolute;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: aliceblue;
}
.exit-btn {
  height: 50px;
  width: 90%;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 5px;
  background-color: transparent;
  border: none;
}
.exit-btn i{
 font-size: 2.4rem;
 cursor: pointer;
 height: 100%;
 width: 40px;
}
.icon1{
    width: 85%;
    height: auto;
    display: flex;
    margin-top: 10px;
    justify-content: space-between;
    
}
.icon1 .profile{
    display: flex;
    justify-content: center;
    align-items: center;
}

.videomain {
  margin-top: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.videoplaybox{
  display: none;
}
  video {
  width: 55%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  
}

.imgplaybox{
 height: auto;
 width: 41%;
 display: none;
}


.photo-button-down{
  display: none;
}
.video-button-down{
  display: none;
}





.button-down {
    --main-focus: #2d8cf0;
    --font-color: #323232;
    --bg-color-sub: #dedede;
    --bg-color: #eee;
    --main-color: #323232;
    position: relative;
    width: 150px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 2px solid var(--main-color);
    box-shadow: 4px 4px var(--main-color);
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .button-down, .button__icon, .button__text {
    transition: all 0.3s;
  }
  
  .button-down .button__text {
    transform: translateX(22px);
    color: var(--font-color);
    font-weight: 600;
  }
  
  .button-down .button__icon {
    position: absolute;
    transform: translateX(109px);
    height: 100%;
    width: 39px;
    background-color: var(--bg-color-sub);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .button-down .svg {
    width: 20px;
    fill: var(--main-color);
  }
  
  .button-down:hover {
    background: var(--bg-color);
  }
  
  .button-down:hover .button__text {
    color: transparent;
  }
  
  .button-down:hover .button__icon {
    width: 148px;
    transform: translateX(0);
  }
  
  .button-down:active {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px var(--main-color);
  }