/*RIGHT BUttons*/
#videoBack {
    overflow: hidden;
    right: 0;
    left: 0;
    top: 0px;
    z-index: 0;
}
#background-video {
    opacity: 0.01;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

#background-video iframe {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1200px;
    height: calc(100% + 200px);
    bottom: 0;
}

#background-video2 {
    display: none;
    height: 900px;
    z-index: 2;
    object-fit: cover;
}

#leftButtons {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed; /* Fixed position on the side of the screen */
    top: 50%; /* Center vertically */
    left: 10px; /* Adjust this to position the container on the side of the screen */
    transform: translateY(-50%);
    z-index: 3;
}

#rightButtons{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed; /* Fixed position on the side of the screen */
    top: 50%; /* Center vertically */
    right: 10px; /* Adjust this to position the container on the side of the screen */
    transform: translateY(-50%);
    z-index: 3;
}

.sideBtn {
    width: 52px;
    height: 52px;
}

.sideBtnHidden {
    font-weight: bold;
    font-size: 18px;
    display: block;
    position: absolute;
    height: 42px;
    width: 130px;
    right: -10px;
    bottom: -50px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.isHidden {
    display: none;
    transform: translateX(100%);
}

#soundBtn {
    width: 100%;
    height: 100%;
    touch-action: none;
    transform: translate(0px, 0px);
    background: white;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    box-shadow: 0px 1px 7px #00000059;
}

/*STARS*/
.stars {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.star {
    font-size: 18px;
    color: gray;
    margin: 0 1px;
}

.star::before {
    content: "\2605";
}

.star.half::before {
    content: "\2605";
    position: absolute;
    display: inline-block;
    overflow: hidden;
    left: 0;
    top: 0;
    width: 50%;
}

.star.filled {
    color: orange;
}

.star.filled.half::before {
    color: orange;
}

.blink {
    animation: blinkMe .5s linear infinite;
}

@keyframes blinkMe {
    0% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .3;
    }
}

.blur {
    filter: blur(5px);
}



/*SIDE BUTTONS*/

.button-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height:50px;
    margin: 5px 0;
    justify-content: center; /* Center content vertically */
    transition: all 0.3s ease;
    overflow: hidden;
}
.button-wrapper.expanded {
    height: 290px; /* Adjust height as needed */
}
.expand-btn {
    width: 50px;
    height: 50px;
    border: none;
    background-color: var(--background_2);
    color: var(--color);
    font-size: 24px;
    cursor: pointer;
    border-radius: 8px;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.expand-btn:hover {
    background-color: #0056b3;
}

.plus-icon {
    transition: transform 0.3s;
}

.expand-btn.open .plus-icon {
    transform: rotate(45deg);
}
#emojiButtons,#optionsButtons{
    transition: .2s all;
}
#optionsButtons.open{
    margin-bottom: 90px;
}
#emojiButtons.open{
    margin-top: 90px;
}
.icon-buttons {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.icon-btn {
    width: 50px;
    height: 50px;
    border: none;
    background-color: #5454546b;
    color: white;
    font-size: 26px;
    cursor: pointer;
    border-radius: 8px;
    position: absolute;
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.icon-btn.show {
    opacity: 1;
}

.icon-btn:hover {
    background-color: #218838;
}

/*SIDE BUTTONS END*/

/*USER PROFILE*/
#sru_reply:hover{
    background-color: #fff!important;
}
#sru_avatar{
  width: 120px;
  margin: auto;
}
#sru_avatar img{
    margin-top: -100px;
    border-radius: 50%;
    padding: 2px;
    width:100px;
    background: white;
    box-shadow: 0px -4px 12px 0px #00000033;
    
}

#profile_picture_crop_holder{
  cursor:pointer;
  overflow: hidden;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 15px auto;
  font-size: 30;
}
#profile_picture_crop_holder img{
  width:80px;
  height:80px;
  border-radius: 50%;
}
#profile_edit .edit_field{
  display:flex;
  justify-content: space-between;
  padding:0px 10%
}
.toshow{
  flex:1;
 display: none;
 text-align: right;
}
.tohide{
  padding: 15px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex:1;
  text-align: left;
}
.toedit{
  flex:1;
  padding: 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}
.toedit[contenteditable]{
  text-align: left;
  padding-left: 10px;
}
.toshow div{
  display:inline-block;
}
.toshow .icon_btn{
  font-size: 28px;
  margin-left: 5px;
  padding: 0 10px;
  cursor: pointer;
}

#ss_play, #ss_replay{
  display:none;
}
#search_song_tip{
  text-align: center;
  font-size: 20px;
}

.room_result:hover{
    border-radius: 4px;
    color:var(--color_inverse);
    background:var(--background_inverse);
    background: linear-gradient(90deg, var(--background_inverse) 62%, rgba(238,238,238,0) 100%);
}