body {
  background-color: #1a1a1a;
  margin: 0;
}
.bo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0;
}
.bl {
  display:inline-block;
  min-width: 320px;
  margin: 10px;
  width: 340px;
  background-color: #393939;
  color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 10px;
}
#ophoto-box {
  width: 100%;
  height: auto;
  background: #6d6d6d;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all .5s;
  position: relative;
  overflow: hidden;
}
.resbox {
  position: relative;
}
.warnlogo {
  position: absolute;
  margin-left: 360px;
  color: #e84500;
}
.chatbox {
  width: 100%;
  height: 100%;
  background: #6d6d6d;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all .5s;
  position: relative;
  overflow: hidden;
}
.chatbox:not(:first-child) {
  margin-top: 55px;
}
.ops {
  width: 100%;
}
.ophoto {
    width: 100%;
}
#ophoto-choose {
    margin-top: 20px;
}
.ophoto-title {
    background: #00a0ff; 
    font-size: 20px; 
    font-weight: 600; 
    margin: 0 0 20; 
    color: white; 
    padding: 7px 12px; 
    width: fit-content; 
    border-radius: 100px;
}
.ophoto-buttom {
  display: inline-flex;
  background: #f5f5f5; 
  font-size: 18px; 
  font-weight: 600; 
  margin: 0 5 10 0; 
  color: #555; 
  padding: 7px 12px; 
  width: fit-content; 
  border-radius: 100px;
  align-items: center;
  transition: all .4s;
  cursor: pointer;
}
.ophoto-buttom:link,.ophoto-buttom:visited {
  color: #555;
  text-decoration:none;
}
.ophoto-buttom img {
  height: 1.2em;
  margin-right: 5px;
  border-radius: 5px;
}
.canclick {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  transition: all .3s;
  cursor: pointer;
  user-select: none;
}
.addhidebar {
  position: absolute;
  height: 55px;
  width: 100%;
  background: #dcdcdc52;
  transition: opacity 0.4s;
  opacity: 0;
  backdrop-filter: blur(4px);
}
.hidebar {
  position: absolute;
  height: 55px;
  width: 100%;
  background: #dcdcdc52;
  backdrop-filter: blur(4px);
  animation: showhidebar 0.4s;
}
.uchidebar {
  position: absolute;
  height: 55px;
  width: 100%;
  background: #dcdcdc52;
  backdrop-filter: blur(4px);
  animation: hidehidebar 0.4s;
}
@keyframes hidewarn {
  0% {
    background-color: #dcdcdc52;
  }
  50% {
    background-color: #e8450093;
  }
  100% {
    background-color: #dcdcdc52;
  }
}
@keyframes showhidebar {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hidehidebar {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}