.intercept  .panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem;
  flex-direction: column;
}
.intercept  .panel_body {
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 500px;
}
.intercept  .list {
  width: 100%;
  overflow-Y: scroll;
}
.intercept  .panel_title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2rem;
}
.intercept  .panel_item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px;
  border-bottom: 1px dashed #058cff;
}
.intercept  .panel_item span {
  text-align: center;
  width: 100%;
  user-select: text;
}
.intercept  .active_item {
  display: none;
}
*{
  box-sizing: border-box;
}
.intercept .search{
  width: fit-content;
  height: fit-content;
  position: relative;
}
.intercept  .input-search{
  height: 50px;
  border-style: none;
  padding: 10px;
  font-size: 18px;
  letter-spacing: 2px;
  outline: none;
  transition: all .5s ease-in-out;
  padding-left: 40px;
  color:#000;
  width: 300px;
  border-radius: 0;
  background-color: transparent;
  border-bottom:1px solid rgb(0 122 247 / 84%);
}
.intercept  .input-search::placeholder{
  color: rgb(42, 41, 41);
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 100;
}
.intercept  .btn-search{
  width: 50px;
  height: 50px;
  border-style: none;
  font-size: 20px;
  font-weight: bold;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  left: -28px;
  color:#0072ff ;
  background-color:transparent;
  pointer-events: painted;
}
.intercept  .input-search:focus{
    width: 300px;
    border-radius: 0;
    background-color: transparent;
    border-bottom:1px solid rgb(0 126 255 / 50%);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}
.intercept  .post_logo {
  bottom: 10px;
  left: 16px;
  background-color: transparent;
  position: fixed;
  z-index: 23;
  width: 40px;
  height: 40px;
}
.intercept  .post-form .intercept  .input-search {
    height: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    transition: all .5s ease-in-out;
    padding-left: 40px;
    color: #000;
    width: 300px !important;
    border-radius: 0;
    background-color: transparent;
    border-bottom: 1px solid rgb(0 122 247 / 84%);
}
.intercept  .post_logo img {
  width: 100%;
  object-fit: cover;
}
.intercept  .post-success {
  color: #1b9bf6;
}

.intercept  .post-form .intercept  .list::-webkit-scrollbar {
  width: 4px;
  height: 5px;
}
.intercept  .post-form .intercept  .list::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
@media screen and (max-width: 900px) {
  .intercept  .post-form .intercept  .panel_body {
     width: 100%;
  }
  .intercept  .panel.intercept  .post-form {
    padding: 0;
  }
}
