

.bar {
height: 100vh;
 width: 100vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-image: url("bg-image.png");
  position: relative;
  overflow: hidden!important;
}


.ball-box {
  background-image: url("gameplify-ball2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: 10%;
  left: 10%;

}

.comments-button .icon-container {
    display: flex;
    align-items: center;
    float: right;

}

.comments-button .reply-count {
    margin-left: 5px; /* Adjust the spacing between the icon and the reply count */
}


.topButtonBox {
  position: absolute;
  height: 50px;
  border-radius: 20px;
  left: 0;
  right: 0;
  margin: 5px auto;
  width: 100%; /* adjust this value as needed */
  background: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  animation: pulse 2s infinite;
}
@media (min-width: 1441px) {
   .topButtonBox {
    width: 80%!important;
   }
}


@keyframes pulse {
  0% {
    border-radius: 20px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    border-radius: 50px;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0);
  }
  100% {
    border-radius: 20px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}


.top-menu {
    position: relative;
    height:40px;
    width: 100vw;
    background: rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    background-image: url("title-image2.png");
  }

@media (max-width:450px) {
  .ball-box{
    width: 100px;
    height: 100px;
  }
}
.sign-up{
    background: rgba(0,0,0, .9)!important;
    padding:30px!important;
    max-height:65%;
    flex-direction: column!important;
    overflow: auto;
}
#login-box {
  background: none;
  background-color: rgba(0, 0, 0, .8);
  padding:30px;
  height: auto;
  min-width:10vw!important;
  display: flex;
  flex-direction: column;
  overflow: auto;
  box-sizing: content-box !important;
}
@media (max-width: 600px) and (max-height: 1200px) {
    #login-box {
    width:60%!important;
    }
  }

.forget-box{
width:25vw!important;
}

@media (max-width: 600px) and (max-height: 1200px) {
    .forget-box {
    width:70%!important;
    }
  }

.absolute-center {
  margin: 0 !important;
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
}





.profile-ui {
  display: flex;
  height: auto;
  width: auto;
  margin: 0 !important;
  margin-bottom: 40px !important;
  flex-wrap: wrap;
  background-color:rgba(0,0,0, .8);

}

     .boxButtonProfile{
    display: flex;
    justify-content: center;
    align-items: center;
    top:15.5%;
    height:5vh;
    width:60vw;
    border-radius:10px;
    background: rgba(0, 0, 0, 0.3);
          }

          .boxButtonProfile,.border{
          border: 1px solid #ddd;
           box-shadow:.5px 1px 5px #00FFFF;
          }



.button-bar-profile {
  margin-left: 0;
}
.text{
border-radius:5px;
min-width:100px;
max-height:15px;
}
.text-box{
max-height:15px;
}




.select {
  text-indent: -100px; /* hide text initially */
animation: slide-in 3s forwards; /* apply animation */
}


@keyframes slide-in {
  0% {
    text-indent: -100px; /* hide text */
  }
  100% {
    text-indent: 0; /* show text */
  }
}




.header-center {
  text-align: center;
}

.top{
  z-index: 10000;
}
.notification-panel {
   margin: 0 !important;
   position: absolute;
   border-radius:10px!important;
   top:16%!important;
   left:50%!important;
   width: 25%!important;
   transform: translate(-50%, -50%);
   overflow: none !important;
   transition: opacity 0.3s ease-in-out;
}

.flex{
  display:flex;
  flex-direction: row;
}

.none, .hidden{
  display:none;
}

.flex.row{
  flex-direction:row;
}
.flex.col{
  flex-direction:column;
}

.flex.wrap{
  flex-wrap:wrap;
}

.align-center{
  align-items:center;
}

.just-center{
  justify-content: center;
}

@media (max-width: 600px) and (max-height: 1200px) {
  .notification-panel {
    /* Adjust the size and styles to fit the mobile screen */
      width: 100%!important;
    top: 18%!important;
    left:90%!important;
  }
}

@media (max-width: 1200px) and (max-height: 600px) {
  .notification-panel {
    /* Adjust the size and styles to fit the mobile screen */
      width: 100%!important;
    top: 25%!important;
       left:50%!important;
  }
}




.product .thumbnail {
    width: 300px;
    height: 180px;
    object-position: center;
    object-fit: cover;
    border-radius: 18px;
}


.form-group  .label{
  font-size:15px!important;
  color: white;
  line-height: 2em!important;
 }

.keep-center{
  top: 50vh!important;
    left: 50vw!important;
    transform: translate(-50%, -50%);
}


.table-button {
  background-color: transparent; /* Transparent instead of 'none' */
  color: inherit; /* Use 'inherit' to take the color from the parent element */
  padding: 9px;
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 1); /* Creates a clear shadow */
  border: none; /* No border */
  margin-left: 5px;
  margin-top: 5px;
  cursor: pointer; /* Adds a pointer cursor for better UX */
  transition: box-shadow 0.2s ease, transform 0.2s ease; /* Adds hover animation */
}

/* Hover Effect */
.table-button:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); /* Slightly stronger shadow on hover */
  transform: scale(1.05); /* Slightly enlarges the button on hover */
}

.m-5{
margin:5px!important;
}
.m-10{
margin:10px!important;
}

.m-r-5{
margin-right:5px!important;
}
.m-l-5{
margin-left:5px!important;
}
.m-t-5{
margin-top:5px!important;
}
.m-b-5{
margin-bottom:5px!important;
}

.m-r-10{
margin-right:10px!important;
}
.m-l-10{
margin-left:10px!important;
}
.m-l-20{
margin-left:20px!important;
}
.m-t-10{
margin-top:10px!important;
}
.m-b-10{
margin-bottom:10px!important;
}
.m-b-15{
margin-bottom:15px!important;
}

.float-r{
float:right!important;
}

.pd-3{
padding:3px!important;
}
.pd-5{
padding:5px!important;
}
.pd-10{
padding:10px!important;
}

.pd-20{
padding:20px!important;
}
.pd-t-20{
padding-top:20px!important;
}

.flex-d-col{
display: flex;
flex-direction: column;
}

.anchor-center{
align-self: anchor-center;
}

.f-900{
font-weight:900;
}



